blob: e534f82991142096c545256f6d95d1e240853775 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#if 0
#include <stdlib.h>
char * getlogin(void)
{
/* TODO: get actual controlling terminal, then read utmpx */
return getenv("LOGNAME");
}
/*
POSIX(1)
*/
#endif
|