/usr/include/libps/pslib-mp.h is in pslib-dev 0.4.5-3+b2.
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 | #ifndef __PSLIB_MP_H__
#define __PSLIB_MP_H__
#include <libps/pslib.h>
#ifdef __cplusplus
extern "C" {
#endif
PSLIB_API void PSLIB_CALL
PS_mp_init(void);
PSLIB_API void * PSLIB_CALL
PS_mp_malloc(PSDoc *p, size_t size, const char *caller);
PSLIB_API void * PSLIB_CALL
PS_mp_realloc(PSDoc *p, void *mem, size_t size, const char *caller);
PSLIB_API void PSLIB_CALL
PS_mp_free(PSDoc *p, void *mem);
PSLIB_API void PSLIB_CALL
PS_mp_list_unfreed();
#ifdef __cplusplus
}
#endif
#endif
|