aboutsummaryrefslogtreecommitdiff
path: root/system/include/libc
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2012-03-27 20:40:35 -0400
committerBehdad Esfahbod <behdad@behdad.org>2012-03-27 20:42:23 -0400
commit80bc58af4cf2717fed6fd2aabd627c69c016e988 (patch)
tree677898883d02567c8cca352813a7745739a4958d /system/include/libc
parent053a246c4c016dd635b0bb4308c9378f2ead7bbd (diff)
Don't define u_int64_t and similar types twice
They are already typedef'ed earlier in the file. This breaks emcc on my Mac at least. This was broken by f4018dfb.
Diffstat (limited to 'system/include/libc')
-rw-r--r--system/include/libc/sys/types.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/system/include/libc/sys/types.h b/system/include/libc/sys/types.h
index 79506f3a..7fc4be21 100644
--- a/system/include/libc/sys/types.h
+++ b/system/include/libc/sys/types.h
@@ -141,13 +141,9 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef signed char int8_t;
-typedef unsigned char u_int8_t;
typedef short int16_t;
-typedef unsigned short u_int16_t;
typedef int int32_t;
-typedef unsigned int u_int32_t;
typedef long long int64_t;
-typedef unsigned long long u_int64_t;
typedef int32_t register_t;
#endif /* __MS_types__ */