summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/limits.h
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2003-03-28 17:06:34 +0000
committerMystery Man <unknown@mandriva.org>2003-03-28 17:06:34 +0000
commit58b47dd22440429495a586a13bf975fad4a5645e (patch)
tree59002ba00fba5bc9c3a3ad339dd18848e87895c3 /mdk-stage1/dietlibc/include/limits.h
parent22aa34691eda7885218ec1b19543ed44ac9b7417 (diff)
downloaddrakx-backup-do-not-use-58b47dd22440429495a586a13bf975fad4a5645e.tar
drakx-backup-do-not-use-58b47dd22440429495a586a13bf975fad4a5645e.tar.gz
drakx-backup-do-not-use-58b47dd22440429495a586a13bf975fad4a5645e.tar.bz2
drakx-backup-do-not-use-58b47dd22440429495a586a13bf975fad4a5645e.tar.xz
drakx-backup-do-not-use-58b47dd22440429495a586a13bf975fad4a5645e.zip
This commit was manufactured by cvs2svn to create tag 'V9_1_29mdk'.V9_1_29mdk
Diffstat (limited to 'mdk-stage1/dietlibc/include/limits.h')
-rw-r--r--mdk-stage1/dietlibc/include/limits.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/mdk-stage1/dietlibc/include/limits.h b/mdk-stage1/dietlibc/include/limits.h
deleted file mode 100644
index a333debfd..000000000
--- a/mdk-stage1/dietlibc/include/limits.h
+++ /dev/null
@@ -1,48 +0,0 @@
-#ifndef _LIMITS_H
-#define _LIMITS_H
-
-#include <linux/limits.h>
-
-#define __WORDSIZE 32
-
-#ifdef __alpha__
-#undef __WORDSIZE
-#define __WORDSIZE 64
-#endif
-
-#ifndef PATH_MAX
-#define PATH_MAX 4096
-#endif
-
-#define CHAR_BIT 8
-
-#define SCHAR_MIN (-128)
-#define SCHAR_MAX 0x7f
-#define UCHAR_MAX 0xff
-
-#define SHRT_MIN (-SHRT_MAX-1)
-#define SHRT_MAX 0x7fff
-#define USHRT_MAX 0xffff
-
-#define INT_MIN (-INT_MAX-1)
-#define INT_MAX 0x7fffffff
-#define UINT_MAX 0xffffffff
-
-#if __WORDSIZE == 64
-#define LONG_MAX 9223372036854775807L
-#define ULONG_MAX 18446744073709551615UL
-#else
-#define LONG_MAX 2147483647L
-#define ULONG_MAX 4294967295UL
-#endif
-#define LONG_MIN (-LONG_MAX - 1L)
-
-#define LLONG_MAX 9223372036854775807LL
-#define LLONG_MIN (-LLONG_MAX - 1LL)
-
-/* Maximum value an `unsigned long long int' can hold. (Minimum is 0.) */
-#define ULLONG_MAX 18446744073709551615ULL
-
-#define PASS_MAX 256
-
-#endif