1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

r18659: restore BOOL, sorry:-)

libreplace only provides 'bool' not BOOL

metze
This commit is contained in:
Stefan Metzmacher 2006-09-19 00:29:41 +00:00 committed by Gerald (Jerry) Carter
parent 5de76767e8
commit ce6a0723ff

View File

@ -908,6 +908,11 @@ struct timespec {
#define MAX(a,b) ((a)>(b)?(a):(b))
#endif
#ifndef _BOOL
typedef int BOOL;
#define _BOOL /* So we don't typedef BOOL again in vfs.h */
#endif
#ifdef HAVE_BROKEN_GETGROUPS
#define GID_T int
#else