1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Add missing #include to libctdb/ctdb.c

We need that to have the "offsetof" macro, thus we don't need to redeclare it
in libctdb_private.h

Signed-off-by: Michael Adam <obnox@samba.org>

(This used to be ctdb commit 4bfdfdae4f8ab23f14bc6ab4c06b66c07714ec17)
This commit is contained in:
Volker Lendecke 2011-08-17 14:46:43 +02:00 committed by Michael Adam
parent 02ebd35398
commit 452f6504a0

View File

@ -25,6 +25,7 @@
#include <sys/socket.h> #include <sys/socket.h>
#include <sys/un.h> #include <sys/un.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <stddef.h>
#include "libctdb_private.h" #include "libctdb_private.h"
#include "io_elem.h" #include "io_elem.h"
#include "local_tdb.h" #include "local_tdb.h"