This file is indexed.

/usr/include/beid/opensc/scdl.h is in libbeidlibopensc2-dev 3.5.2.dfsg-10ubuntu3.

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
/*
 * Dynamic loading routines for various platforms, to
 * be used internally in several places.
 *
 * No interface for portable error handling, maybe
 * later.
 *
 * Copyright (C) 2003  Antti Tapaninen <aet@cc.hut.fi>
 *                     Olaf Kirch <okir@lst.de>
 *                     Stef Hoeben <stef.hoeben@zetes.com>
 */

#ifndef _SC_DL_H
#define _SC_DL_H

#ifdef __cplusplus
extern "C" {
#endif

extern void *scdl_open(const char *name);
extern int scdl_close(void *module);
extern void *scdl_get_address(void *module, const char *symbol);

#ifdef __cplusplus
}
#endif
#endif