diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-01-30 19:38:59 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-01-30 19:38:59 +0100 |
commit | 3718cf294ad1f3e00178cb34b2c914c9aecf2016 (patch) | |
tree | 11c2de24fbf73fe17795fc80e0fd59b0dad76a0b /lib | |
parent | 2f8a39829611da0ba4661744ff189f66907b43e6 (diff) | |
download | samba-3718cf294ad1f3e00178cb34b2c914c9aecf2016.tar.gz samba-3718cf294ad1f3e00178cb34b2c914c9aecf2016.tar.bz2 samba-3718cf294ad1f3e00178cb34b2c914c9aecf2016.zip |
lib/tdb: include replace.h and system/filesys.h in pytdb.c
This fixes the build on Tru64.
metze
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tdb/pytdb.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/tdb/pytdb.c b/lib/tdb/pytdb.c index 15a8d8a3e2..60aae9fd86 100644 --- a/lib/tdb/pytdb.c +++ b/lib/tdb/pytdb.c @@ -24,6 +24,9 @@ License along with this library; if not, see <http://www.gnu.org/licenses/>. */ +#include "replace.h" +#include "system/filesys.h" + #include <Python.h> #ifndef Py_RETURN_NONE #define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None @@ -34,11 +37,7 @@ #endif /* Include tdb headers */ -#include <stdint.h> -#include <signal.h> #include <tdb.h> -#include <fcntl.h> -#include <stdbool.h> typedef struct { PyObject_HEAD |