The sys/types.h header define varies by platform, so check for both possibilities

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7659 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
haydentech
2004-05-26 16:54:54 +00:00
parent 0ddc8de6c6
commit 49c997b9b1
+2 -2
View File
@@ -28,11 +28,11 @@
#define _SUPPORT_DEFS_H
/* this !must! be located before the include of sys/types.h */
#ifndef _SYS_TYPES_H
#if !defined(_SYS_TYPES_H) && !defined(_SYS_TYPES_H_)
typedef unsigned long ulong;
typedef unsigned int uint;
typedef unsigned short ushort;
#endif // _SYS_TYPES_H
#endif // _SYS_TYPES_H / _SYS_TYPES_H_
// Standard Includes -----------------------------------------------------------