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

r14851: Make BOOL, False and True simple aliases to the POSIX-defined

bool, false and true (guaranteed to be defined by lib/replace)
(This used to be commit 53fa1bdb6e)
This commit is contained in:
Jelmer Vernooij 2006-04-01 18:26:30 +00:00 committed by Gerald (Jerry) Carter
parent 25853252e5
commit ab9fb12e0b

View File

@ -26,10 +26,10 @@
#include "libcli/util/nt_status.h"
typedef int BOOL;
typedef bool BOOL;
#define False (0)
#define True (1)
#define False false
#define True true
/* used to hold an arbitrary blob of data */
typedef struct datablob {