19 lines
232 B
C
19 lines
232 B
C
|
/* utmp.h: Write entries to utmp files. */
|
||
|
|
||
|
#ifndef _UTMP_H
|
||
|
#define _UTMP_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/* Prepare a new terminal session on a tty. */
|
||
|
int login_tty(int fd);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|