12 lines
135 B
C
12 lines
135 B
C
/* FIXME: dummy stub for now. */
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
|
|
char *
|
|
getlogin (void)
|
|
{
|
|
errno = ENOSYS;
|
|
return NULL;
|
|
}
|
|
|