This file is indexed.

/usr/include/xenomai/posix/syslog.h is in libxenomai-dev 2.6.3-2.

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
#ifndef SYSLOG_H
#define SYSLOG_H

#pragma GCC system_header

#include <stdarg.h>
#include_next <syslog.h>
#include <xeno_config.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

void __real_syslog(int priority, const char *fmt, ...);

void __real_vsyslog(int priority, const char *fmt, va_list ap);

#ifdef CONFIG_XENO_FORTIFY
void __real___vsyslog_chk(int priority, int level, const char *fmt, va_list ap);
#endif

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* SYSLOG_H */