This file is indexed.

/etc/latrace.d/headers/utmp.h is in latrace 0.5.11-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* /usr/include/utmp.h */


typedef void utmp;


int  login_tty(int fd);
void login(utmp *entry);
int  logout(char *ut_line);


void logwtmp(char *ut_line, char *ut_name, char *ut_host);
void updwtmp(char *wtmp_file, utmp *utmp);


int utmpname(char *file);


utmp* getutent();
void  setutent();
void  endutent();
utmp* getutid(utmp *id);


utmp* getutline(utmp *line);
utmp* pututline(utmp *utmp_ptr);
int   getutent_r(utmp *buffer, void *result);
int   getutid_r(utmp *id, utmp *buffer, void *result);
int   getutline_r(utmp *line, utmp *buffer, void *result);