blob: 9a51dcc4bbe297e6fc6cce2f6dc9540d372b19ef (
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 int utmps_here_maybe_init (void) ;
extern void utmps_utmpx_pack (char *, struct utmpx const *) ;
extern void utmps_utmpx_unpack (char const *, struct utmpx *) ;
#endif
|