From: Alan Hourihane Date: Tue, 26 Jan 2010 20:57:03 +0000 (+0000) Subject: Check for __USE_MISC for defining uint & ushort X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=46f453b29890afebb49daa04e0dbeadc45e662c2;p=mesa.git Check for __USE_MISC for defining uint & ushort --- diff --git a/src/gallium/include/pipe/p_compiler.h b/src/gallium/include/pipe/p_compiler.h index 272d0308cc1..6a9018aa3a0 100644 --- a/src/gallium/include/pipe/p_compiler.h +++ b/src/gallium/include/pipe/p_compiler.h @@ -63,7 +63,7 @@ #include -#ifndef __HAIKU__ +#if !defined(__HAIKU__) && !defined(__USE_MISC) typedef unsigned int uint; typedef unsigned short ushort; #endif