summaryrefslogtreecommitdiff
path: root/bsd-login.h
diff options
context:
space:
mode:
Diffstat (limited to 'bsd-login.h')
-rw-r--r--bsd-login.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/bsd-login.h b/bsd-login.h
deleted file mode 100644
index f26f47084..000000000
--- a/bsd-login.h
+++ /dev/null
@@ -1,22 +0,0 @@
1#ifndef _BSD_LOGIN_H
2# define _BSD_LOGIN_H
3
4# include "config.h"
5# ifndef HAVE_LOGIN
6
7# include <utmp.h>
8
9# if defined(HAVE_UTMPX_H) && defined(USE_UTMPX)
10# include <utmpx.h>
11
12void login(struct utmp *utp, struct utmpx *utx);
13
14# else /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */
15
16void login(struct utmp *utp);
17
18# endif /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */
19
20# endif /* !HAVE_LOGIN */
21
22#endif /* _BSD_LOGIN_H */