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