blob: 26a8505b3c0ffe0947a3102d652e3de134912b22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _BSD_LOGIN_H
#define _BSD_LOGIN_H
#include "config.h"
#ifndef HAVE_LOGIN
#include <utmp.h>
void login(struct utmp *utp);
#endif /* !HAVE_LOGIN */
#endif /* _BSD_LOGIN_H */
|