1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

libctdb: Correct 4bfdfda, stddef.h is needed by libctdb_private.h

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

(This used to be ctdb commit 683caa7bbf45d5b6791e53e2f3ee6d0ac3b08f28)
This commit is contained in:
Volker Lendecke 2011-08-18 13:54:36 +02:00 committed by Michael Adam
parent 452f6504a0
commit 19f31f86ac
2 changed files with 1 additions and 1 deletions

View File

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

View File

@ -8,6 +8,7 @@
#include <ctdb_protocol.h>
#include <syslog.h>
#include <tdb.h>
#include <stddef.h>
#ifndef offsetof
#define offsetof(t,f) ((unsigned int)&((t *)0)->f)