fix a minor problem

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@910 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
beveloper 2002-08-28 17:26:06 +00:00
parent ac52c3780f
commit d7e6d6f0a3

View File

@ -27,6 +27,14 @@
#ifndef _SUPPORT_DEFS_H
#define _SUPPORT_DEFS_H
/* this !must! be located before the include of sys/types.h */
#ifndef _SYS_TYPES_H
typedef unsigned long ulong;
typedef unsigned int uint;
typedef unsigned short ushort;
#endif // _SYS_TYPES_H
// Standard Includes -----------------------------------------------------------
// System Includes -------------------------------------------------------------
@ -42,13 +50,6 @@
// Globals ---------------------------------------------------------------------
#ifndef _SYS_TYPES_H
typedef unsigned long ulong;
typedef unsigned int uint;
typedef unsigned short ushort;
#endif // _SYS_TYPES_H
// Shorthand type formats ------------------------------------------------------
typedef signed char int8;