diff options
author | YamaArashi <shadow962@live.com> | 2016-01-06 01:47:28 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-01-06 01:47:28 -0800 |
commit | be8b04496302184c6e8f04d6179f9c3afc50aeb6 (patch) | |
tree | 726e2468c0c07add773c0dbd86ab6386844259ae /gcc/limitx.h |
initial commit
Diffstat (limited to 'gcc/limitx.h')
-rwxr-xr-x | gcc/limitx.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/limitx.h b/gcc/limitx.h new file mode 100755 index 0000000..529d9c5 --- /dev/null +++ b/gcc/limitx.h @@ -0,0 +1,12 @@ +/* This administrivia gets added to the beginning of limits.h + if the system has its own version of limits.h. */ + +/* We use _GCC_LIMITS_H_ because we want this not to match + any macros that the system's limits.h uses for its own purposes. */ +#ifndef _GCC_LIMITS_H_ /* Terminated in limity.h. */ +#define _GCC_LIMITS_H_ + +#ifndef _LIBC_LIMITS_H_ +/* Use "..." so that we find syslimits.h only in this same directory. */ +#include "syslimits.h" +#endif |