This file is indexed.

/usr/share/z88dk/include/limits.h is in z88dk-data 1.8.ds1-10.

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

/* $Id: limits.h,v 1.4 2002/02/16 22:42:23 dom Exp $ */

#define CHAR_BIT 8
#define INT_MAX 32767
#define INT_MIN (-32768)
#define LONG_MAX 2147483647L
#define LONG_MIN (-2147483648L)
#define SCHAR_MAX 127
#define SCHAR_MIN (-128)
#define CHAR_MAX SCHAR_MAX
#define CHAR_MIN SCHAR_MIN
#define SHRT_MAX 32767
#define SHRT_MIN (-32768)
#define UCHAR_MAX 255U
#define UINT_MAX 65535U
#define ULONG_MAX 4294967295LU
#define USHRT_MAX 65535U

#endif