blob: 476e100bf89959d935dac41088972349cc8c73e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ISC license. */
#ifndef UTMPS_INTERNAL_H
#define UTMPS_INTERNAL_H
#include <utmps/utmpx.h>
#include <utmps/utmps.h>
extern struct utmpx utmps_utmpx_here ;
extern utmps utmps_here ;
extern void utmps_here_maybe_init (void) ;
extern void utmps_utmpx_pack (char *, struct utmpx const *) ;
extern void utmps_utmpx_unpack (char const *, struct utmpx *) ;
#endif
|