1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| 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);
|
|