diff options
author | Volker Lendecke <vl@samba.org> | 2015-12-05 12:59:49 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2015-12-08 23:01:27 +0100 |
commit | 2bb0b473c1255152291c3c43f82b1cc45fa83b00 (patch) | |
tree | 6872c1770ddac236ee234fb7c2cee830e011c3bc /librpc/ndr/ndr_basic.c | |
parent | 17bc0fab767e59976c6360739d31aa9ad2febc5b (diff) | |
download | samba-2bb0b473c1255152291c3c43f82b1cc45fa83b00.tar.gz |
lib: Avoid a includes.h
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'librpc/ndr/ndr_basic.c')
-rw-r--r-- | librpc/ndr/ndr_basic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/librpc/ndr/ndr_basic.c b/librpc/ndr/ndr_basic.c index 12e39422a03..ecc0f74fbe7 100644 --- a/librpc/ndr/ndr_basic.c +++ b/librpc/ndr/ndr_basic.c @@ -19,10 +19,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "includes.h" +#include "replace.h" #include "system/network.h" #include "librpc/ndr/libndr.h" #include "lib/util/util_net.h" +#include "lib/util/debug.h" #define NDR_SVAL(ndr, ofs) (NDR_BE(ndr)?RSVAL(ndr->data,ofs):SVAL(ndr->data,ofs)) #define NDR_IVAL(ndr, ofs) (NDR_BE(ndr)?RIVAL(ndr->data,ofs):IVAL(ndr->data,ofs)) |