add creal/cimag macros in complex.h (and use them in the functions defs)
[musl] / src / unistd / getlogin.c
1 #include <unistd.h>
2 #include <stdlib.h>
3
4 char *getlogin(void)
5 {
6         return getenv("LOGNAME");
7 }