mirror of
https://github.com/darlinghq/darling.git
synced 2026-01-15 01:09:51 -06:00
10 lines
339 B
C
10 lines
339 B
C
/* 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 (__i386__) || defined(__x86_64__)
|
|
#include <i386/limits.h>
|
|
#else
|
|
#error architecture not supported
|
|
#endif
|