]>
Commit | Line | Data |
---|---|---|
b0d623f7 | 1 | /* This is the `system' limits.h, independent of any particular |
0a7de745 A |
2 | * compiler. GCC provides its own limits.h which can be found in |
3 | * /usr/lib/gcc, although it is not very informative. | |
4 | * This file is public domain. */ | |
6d2010ae | 5 | #if defined (__i386__) || defined(__x86_64__) |
b0d623f7 | 6 | #include <i386/limits.h> |
5ba3f43e A |
7 | #elif defined (__arm__) || defined (__arm64__) |
8 | #include <arm/limits.h> | |
b0d623f7 A |
9 | #else |
10 | #error architecture not supported | |
11 | #endif |