Only use HAVE_UINT to check whether uint is defined.

git-svn-id: svn://10.0.0.236/trunk@47792 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org
1999-09-16 14:58:16 +00:00
parent 1f566b486d
commit a2d62b1090

View File

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