]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/machine/limits.h
xnu-1456.1.26.tar.gz
[apple/xnu.git] / bsd / machine / limits.h
diff --git a/bsd/machine/limits.h b/bsd/machine/limits.h
new file mode 100644 (file)
index 0000000..0f40842
--- /dev/null
@@ -0,0 +1,11 @@
+/* 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>
+#else
+#error architecture not supported
+#endif