Luna/libc/include/utmp.h

19 lines
232 B
C
Raw Normal View History

2023-11-25 11:18:25 +00:00
/* 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