]> andersk Git - openssh.git/blame - bsd-login.h
doc
[openssh.git] / bsd-login.h
CommitLineData
beb43d31 1#ifndef _BSD_LOGIN_H
f498ed15 2# define _BSD_LOGIN_H
beb43d31 3
f498ed15 4# include "config.h"
5# ifndef HAVE_LOGIN
beb43d31 6
f498ed15 7# include <utmp.h>
beb43d31 8
f498ed15 9# if defined(HAVE_UTMPX_H) && defined(USE_UTMPX)
10# include <utmpx.h>
beb43d31 11
f498ed15 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 */
beb43d31 21
22#endif /* _BSD_LOGIN_H */
This page took 0.058152 seconds and 5 git commands to generate.