Check for __USE_MISC for defining uint & ushort

This commit is contained in:
Alan Hourihane 2010-01-26 20:57:03 +00:00
parent 43867acb6a
commit 46f453b298
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@
#include <stdbool.h>
#ifndef __HAIKU__
#if !defined(__HAIKU__) && !defined(__USE_MISC)
typedef unsigned int uint;
typedef unsigned short ushort;
#endif