math: move x86_64 exp2l implementation to exp2l.s from expl.s
[musl] / src / unistd / getlogin.c
1 #include <unistd.h>
2 #include <stdlib.h>
3
4 char *getlogin(void)
5 {
6         return getenv("LOGNAME");
7 }