Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
unistd
/
getlogin.c
blob: 06011913a0d712e678a3ca5ec07fd7e086580971 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
<stdlib.h>
char
*
getlogin
(
void
)
{
return
getenv
(
"LOGNAME"
);
}