This commit is contained in:
Jeff Muizelaar 2009-04-11 09:53:40 +02:00
Родитель 55c8609263
Коммит af28265c3e
3 изменённых файлов: 10 добавлений и 1 удалений

Просмотреть файл

@ -35,6 +35,10 @@ typedef uint16_t __be16;
#define LITTLE_ENDIAN
#endif
#ifdef __OS2__
#define LITTLE_ENDIAN
#endif
#if !defined(BIG_ENDIAN) && !defined(LITTLE_ENDIAN)
#error Unknown endianess
#endif

Просмотреть файл

@ -1,4 +1,3 @@
#include <stdlib.h>
#include "qcms.h"
#include "qcmstypes.h"

Просмотреть файл

@ -13,7 +13,13 @@ typedef PRInt32 int32_t;
typedef PRUint32 uint32_t;
typedef PRInt64 int64_t;
typedef PRUint64 uint64_t;
#ifdef __OS2__
/* OS/2's stdlib typdefs uintptr_t. So we'll just include that so we don't collide */
#include <stdlib.h>
#else
typedef PRUptrdiff uintptr_t;
#endif
#else