This file is indexed.

/etc/latrace.d/headers/dlfcn.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
/* /usr/include/dlfcn.h */

void* dlopen(char *file, int mode);
int   dlclose(void *handle);
void* dlsym(void *handle, char* name);
void* dlmopen(long nsid, char *file, int mode);
void* dlvsym(void *handle, char *name, char* version);
char* dlerror();
int   dladdr(void *address, void *info);
int   dladdr1(void *address, void *info, void *extra_info, int flags);
int   dlinfo(void *handle, int request, void *arg);