diff options
Diffstat (limited to '')
| -rw-r--r-- | src/unistd/getlogin.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/getlogin.c b/src/unistd/getlogin.c index 06011913..af8372a4 100644 --- a/src/unistd/getlogin.c +++ b/src/unistd/getlogin.c @@ -5,3 +5,11 @@ char *getlogin(void) { return getenv("LOGNAME"); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |
