blob: 636ce96086655031ec5ce6f2ebadd6f8eed796c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <errno.h>
#include <limits.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <utmp.h>
/* Write the given entry into utmp and wtmp. */
void login (const struct utmp *entry)
{
return;
}
link_warning (login, "the `login' function is stubbed out and will not write utmp or wtmp.")
|