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:
parent
25853252e5
commit
ab9fb12e0b
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user