This file is indexed.

/usr/include/paradox-mp.h is in pxlib-dev 0.6.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
#ifndef __PARADOX_MP_H__
#define __PARADOX_MP_H__

#include <paradox-gsf.h>

PXLIB_API void PXLIB_CALL
PX_mp_init(void);

PXLIB_API void * PXLIB_CALL
PX_mp_malloc(pxdoc_t *p, size_t size, const char *caller);

PXLIB_API void * PXLIB_CALL
PX_mp_realloc(pxdoc_t *p, void *mem, size_t size, const char *caller);

PXLIB_API void PXLIB_CALL
PX_mp_free(pxdoc_t *p, void *mem);

PXLIB_API void PXLIB_CALL
PX_mp_list_unfreed();

#endif