summaryrefslogtreecommitdiff
path: root/src/common/cbasetypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/cbasetypes.h')
-rw-r--r--src/common/cbasetypes.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h
index 097b5241c..fe31f4c8d 100644
--- a/src/common/cbasetypes.h
+++ b/src/common/cbasetypes.h
@@ -60,15 +60,18 @@
typedef unsigned char uchar;
typedef signed char schar;
typedef signed short sshort;
-#ifndef __FREEBSD__
-typedef unsigned short ushort;
+
+#if !defined(__FREEBSD__) && !defined(_SYS_TYPES_H)
+ typedef unsigned short ushort;
+#endif
+typedef signed int sint; // don't use (only for ie. scanf)
+#if !defined(__FREEBSD__) && !defined(_SYS_TYPES_H)
+ typedef unsigned int uint; // don't use
#endif
-typedef signed int sint; // don't use (only for ie. scanf)
-#ifndef __FREEBSD__
-typedef unsigned int uint; // don't use
+typedef signed long slong; // don't use (only for ie. file-io)
+#ifndef _SYS_TYPES_H
+ typedef unsigned long ulong; // don't use
#endif
-typedef signed long slong; // don't use (only for ie. file-io)
-typedef unsigned long ulong; // don't use
#ifndef WIN32
typedef char* pchar;