This file is indexed.

/usr/include/funtools/dl.h is in libfuntools-dev 1.4.7-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
#ifndef	__dl_h
#define	__dl_h

#if HAVE_CONFIG_H
#include "conf.h"
#endif

#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
#endif

#include "prsetup.h"

_PRbeg

void *DLOpen _PRx((char *name));
void *DLSym _PRx((void *dl, char *name));
int DLClose _PRx((void *dl));


_PRend

#endif