summaryrefslogtreecommitdiff
path: root/bsd-login.h
diff options
context:
space:
mode:
authorandre <andre>2000-06-03 14:57:40 +0000
committerandre <andre>2000-06-03 14:57:40 +0000
commit2ff7b5d02817eb74a3ac2bf02eadef127b09d77c (patch)
tree13273092785271978f00ba33f3b14519d5ca1409 /bsd-login.h
parente340f73b53aa3451f88fd9d41b652b659b0398f8 (diff)
Added new login recording code
Added test program for login code (make logintest)
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 */