diff options
author | Jeremy Allison <jra@samba.org> | 2002-09-19 17:36:29 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-09-19 17:36:29 +0000 |
commit | 7e19a6b7ade1e70aafa9be8a86665a49f592b6f4 (patch) | |
tree | 29b4a2b0dee217616bfb24d42679d7d9d962e5da /source/tdb | |
parent | 60ab55fedf03a0b505b0b73527e031124a46304e (diff) | |
download | samba-7e19a6b7ade1e70aafa9be8a86665a49f592b6f4.tar.gz samba-7e19a6b7ade1e70aafa9be8a86665a49f592b6f4.tar.xz samba-7e19a6b7ade1e70aafa9be8a86665a49f592b6f4.zip |
tdb tools need #include <signal.h>
Jeremy.
Diffstat (limited to 'source/tdb')
-rw-r--r-- | source/tdb/spinlock.c | 1 | ||||
-rw-r--r-- | source/tdb/tdbtest.c | 1 | ||||
-rw-r--r-- | source/tdb/tdbtool.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/source/tdb/spinlock.c b/source/tdb/spinlock.c index 74472854cf2..2370ce3bdd9 100644 --- a/source/tdb/spinlock.c +++ b/source/tdb/spinlock.c @@ -30,6 +30,7 @@ #include <errno.h> #include <sys/stat.h> #include <time.h> +#include <signal.h> #include "tdb.h" #include "spinlock.h" diff --git a/source/tdb/tdbtest.c b/source/tdb/tdbtest.c index 0741073ce11..89295a3291f 100644 --- a/source/tdb/tdbtest.c +++ b/source/tdb/tdbtest.c @@ -8,6 +8,7 @@ #include <sys/mman.h> #include <sys/stat.h> #include <sys/time.h> +#include <signal.h> #include "tdb.h" #include <gdbm.h> diff --git a/source/tdb/tdbtool.c b/source/tdb/tdbtool.c index ba0fb48957d..f529c6e6eeb 100644 --- a/source/tdb/tdbtool.c +++ b/source/tdb/tdbtool.c @@ -33,6 +33,7 @@ #include <sys/stat.h> #include <sys/time.h> #include <ctype.h> +#include <signal.h> #include "tdb.h" /* a tdb tool for manipulating a tdb database */ |