#ifndef _BSD_LOGIN_H # define _BSD_LOGIN_H # include "config.h" # ifndef HAVE_LOGIN # include # if defined(HAVE_UTMPX_H) && defined(USE_UTMPX) # include void login(struct utmp *utp, struct utmpx *utx); # else /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */ void login(struct utmp *utp); # endif /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */ # endif /* !HAVE_LOGIN */ #endif /* _BSD_LOGIN_H */