This file is indexed.

/usr/include/funtools/tclmainlib.h is in libfuntools-dev 1.4.4-6.

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
30
#include "mainlib.h"

#if HAVE_TCL

/* name of tcl procedure */
#include <tcl.h>

#define TCL_MAINLIB_NAME     "mainlib"

/* library declarations */
_PRbeg

int MainLibInit_Tcl _PRx((MainLib ml));

int MainLibLookup_Tcl _PRx((void *vinterp, char *s));

int MainLibEval_Tcl   _PRx((void *vinterp, char *s));

int MainLibProcess_Tcl _PRx((ClientData clientData, Tcl_Interp *interp,
			     int objc, Tcl_Obj *CONST objv[]));

int MainLibProcessCleanup_Tcl _PRx((ClientData clientData, Tcl_Interp *interp,
				    int objc, Tcl_Obj *CONST objv[]));

int MainLibLoad_Tcl _PRx((ClientData clientData, Tcl_Interp *interp,
			  int objc, Tcl_Obj *CONST objv[]));

_PRend

#endif