blob: 4b927b9a0072f309377915084e3e75d51ba9e1c9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* This administrivia gets added to the beginning of limits.h
if the system has its own version of limits.h. */
#ifndef _LIMITS_H_ /* Terminated in limity.h. */
#define _LIMITS_H_
#ifndef _LIBC_LIMITS_H_
/* Use <...> so that we find syslimits.h only in system include dirs. */
#include <syslimits.h>
#endif
|