summaryrefslogtreecommitdiff
path: root/src/unistd/getlogin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/getlogin.c')
-rw-r--r--src/unistd/getlogin.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/unistd/getlogin.c b/src/unistd/getlogin.c
deleted file mode 100644
index e534f829..00000000
--- a/src/unistd/getlogin.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#if 0
-
-#include <stdlib.h>
-
-char * getlogin(void)
-{
- /* TODO: get actual controlling terminal, then read utmpx */
-
- return getenv("LOGNAME");
-}
-
-/*
-POSIX(1)
-*/
-
-
-#endif