blob: d52080f5e4cef9a39d186854863b13d843b7388f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* This is the `system' limits.h, independent of any particular
compiler. GCC provides its own limits.h which can be found in
/usr/lib/gcc, although it is not very informative.
This file is public domain. */
#if defined (__ppc__) || defined (__ppc64__)
#include <ppc/limits.h>
#elif defined (__i386__) || defined(__x86_64__)
#include <i386/limits.h>
#elif defined (__arm__)
#include <arm/limits.h>
#else
#error architecture not supported
#endif
|