summaryrefslogtreecommitdiff
path: root/arch/i386
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-04-11 10:48:52 -0400
committerRich Felker <dalias@aerifal.cx>2011-04-11 10:48:52 -0400
commit43b2e9bf26371e096b69f4753ff9f6dbec437f5e (patch)
treedda41bbb086e4538e6a3d368e2eafb4c32a72f85 /arch/i386
parent28bde3b78746c4f773600c415fbc740efec4e311 (diff)
downloadmusl-43b2e9bf26371e096b69f4753ff9f6dbec437f5e.tar.gz
musl-43b2e9bf26371e096b69f4753ff9f6dbec437f5e.tar.bz2
musl-43b2e9bf26371e096b69f4753ff9f6dbec437f5e.tar.xz
musl-43b2e9bf26371e096b69f4753ff9f6dbec437f5e.zip
more types cleanup
the basic idea is that the only things in alltypes.h should be types that either vary from system to system (in practice, not just in theoretical la-la land - this is the implementation so we choose what constraints we want to impose on ports) or which are needed by multiple system headers.
Diffstat (limited to 'arch/i386')
-rwxr-xr-xarch/i386/bits/alltypes.h.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/i386/bits/alltypes.h.sh b/arch/i386/bits/alltypes.h.sh
index 4daaf98f..9d94c911 100755
--- a/arch/i386/bits/alltypes.h.sh
+++ b/arch/i386/bits/alltypes.h.sh
@@ -53,9 +53,6 @@ TYPEDEF uint64_t uint_fast64_t;
TYPEDEF long intptr_t;
TYPEDEF unsigned long uintptr_t;
-TYPEDEF long long intmax_t;
-TYPEDEF unsigned long long uintmax_t;
-
TYPEDEF long time_t;
TYPEDEF int suseconds_t;
STRUCT timeval { time_t tv_sec; int tv_usec; };