summaryrefslogtreecommitdiff
path: root/lib/tdb/pytdb.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-30 19:38:59 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-30 19:38:59 +0100
commit3718cf294ad1f3e00178cb34b2c914c9aecf2016 (patch)
tree11c2de24fbf73fe17795fc80e0fd59b0dad76a0b /lib/tdb/pytdb.c
parent2f8a39829611da0ba4661744ff189f66907b43e6 (diff)
downloadsamba-3718cf294ad1f3e00178cb34b2c914c9aecf2016.tar.gz
lib/tdb: include replace.h and system/filesys.h in pytdb.c
This fixes the build on Tru64. metze
Diffstat (limited to 'lib/tdb/pytdb.c')
-rw-r--r--lib/tdb/pytdb.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/tdb/pytdb.c b/lib/tdb/pytdb.c
index 15a8d8a3e21..60aae9fd867 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