This file is indexed.

/usr/include/pbdata/defs.h is in libpbdata-dev 0~20151014+gitbe5d1bf-2.

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
#ifndef DEFS_H_
#define DEFS_H_

#ifndef MIN
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#endif


#ifndef MAX
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#endif

#define SWAP(a, b) (((a) == (b)) ? 0 : ((a) ^= (b), (b) ^= (a), (a) ^= (b)))

#ifndef INF_INT
#define INF_INT INT_MAX
#endif

#endif