Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
unistd
/
getlogin.c
blob: 06011913a0d712e678a3ca5ec07fd7e086580971 [
file
]
#include
<unistd.h>
#include
<stdlib.h>
char
*
getlogin
(
void
)
{
return
getenv
(
"LOGNAME"
);
}