Fix for QNX. Need to tell it what uint is....

git-svn-id: svn://10.0.0.236/trunk@31324 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
briano%netscape.com 1999-05-12 23:44:27 +00:00
parent 80721b8075
commit aa0a4a0913

View File

@ -307,7 +307,7 @@ typedef enum { LockOutDatabase, UnlockDatabase } DBLockFlagEnum;
#endif
/* if we're using gcc's -pedantic-errors, uint isn't defined */
#ifdef __STRICT_ANSI__
#if defined(__STRICT_ANSI__) || !defined(HAVE_UINT)
typedef unsigned int uint;
#endif