This file is indexed.

/usr/include/ossim/vpfutil/xmemory.h is in libossim-dev 1.7.21-3ubuntu2.

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
/* XMEMORY.H */

#ifndef XMEMORY_DEFINED

#define XMEMORY_DEFINED

#ifdef __cplusplus
extern "C" {
#endif



#define Xmark()
#define Xclear()

#define Xmalloc(size) malloc(size)
#define Xcalloc(nelem, elsize) calloc(nelem, elsize)
#define Xfree(pointer) free(pointer)

#ifdef __cplusplus
}
#endif

#endif