]> andersk Git - openssh.git/blob - bsd-login.h
Removed an old entry
[openssh.git] / bsd-login.h
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
12 void login(struct utmp *utp, struct utmpx *utx);
13
14 #   else /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */
15
16 void 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 */
This page took 0.060084 seconds and 5 git commands to generate.