1 /* This administrivia gets added to the beginning of limits.h 2 if the system has its own version of limits.h. */ 3 4 /* We use _GCC_LIMITS_H_ because we want this not to match 5 any macros that the system's limits.h uses for its own purposes. */ 6 #ifndef _GCC_LIMITS_H_ /* Terminated in limity.h. */ 7 #define _GCC_LIMITS_H_ 8 9 #ifndef _LIBC_LIMITS_H_ 10 /* Use "..." so that we find syslimits.h only in this same directory. */ 11 #include "syslimits.h" 12 #endif 13