You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
674 B
31 lines
674 B
4 months ago
|
Index: tdbsa/tdbtool.c
|
||
|
===================================================================
|
||
|
--- tdbsa.orig/tdbtool.c
|
||
|
+++ tdbsa/tdbtool.c
|
||
|
@@ -21,10 +21,21 @@
|
||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
|
*/
|
||
|
|
||
|
-#include "replace.h"
|
||
|
-#include "system/locale.h"
|
||
|
-#include "system/time.h"
|
||
|
-#include "system/filesys.h"
|
||
|
+#include <errno.h>
|
||
|
+#include <stdlib.h>
|
||
|
+#include <stdio.h>
|
||
|
+#include <fcntl.h>
|
||
|
+#include <unistd.h>
|
||
|
+#include <string.h>
|
||
|
+#include <fcntl.h>
|
||
|
+#include <time.h>
|
||
|
+#include <sys/mman.h>
|
||
|
+#include <sys/stat.h>
|
||
|
+#include <sys/time.h>
|
||
|
+#include <ctype.h>
|
||
|
+#include <signal.h>
|
||
|
+#include <stdarg.h>
|
||
|
+
|
||
|
#include "tdb.h"
|
||
|
|
||
|
static int do_command(void);
|