zig/lib/libc/include/any-macos.11-any/machine/limits.h
2023-03-25 21:27:47 +01:00

11 lines
No EOL
410 B
C
Vendored

/* 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>
#elif defined (__arm__) || defined (__arm64__)
#include <arm/limits.h>
#else
#error architecture not supported
#endif