From 6eb262f0e8213415cfe425968c3e344a5d56e179 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 25 Nov 2009 15:30:20 +1100 Subject: libcli: allow ntstatus.h to be used by openchange apparently ntstatus.h is used by openchange, but they don't include replace.h. This makes that possible again. --- libcli/util/ntstatus.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'libcli/util') diff --git a/libcli/util/ntstatus.h b/libcli/util/ntstatus.h index 88b4353c1d..c60e424f68 100644 --- a/libcli/util/ntstatus.h +++ b/libcli/util/ntstatus.h @@ -637,6 +637,14 @@ NTSTATUS nt_status_string_to_code(const char *nt_status_str); /** Used by ntstatus_dos_equal: */ extern bool ntstatus_check_dos_mapping; +/* we need these here for openchange */ +#ifndef likely +#define likely(x) (x) +#endif +#ifndef unlikely +#define unlikely(x) (x) +#endif + #define NT_STATUS_IS_OK(x) (likely(NT_STATUS_V(x) == 0)) #define NT_STATUS_IS_ERR(x) (unlikely((NT_STATUS_V(x) & 0xc0000000) == 0xc0000000)) /* checking for DOS error mapping here is ugly, but unfortunately the -- cgit