13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
** drh@hwaci.com
** http://www.hwaci.com/drh/
**
*******************************************************************************
**
** A common header file used by all modules.
*/
/*
** System header files used by all modules
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
|
>
>
>
>
>
>
>
>
>
>
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
** drh@hwaci.com
** http://www.hwaci.com/drh/
**
*******************************************************************************
**
** A common header file used by all modules.
*/
/* The following macros are necessary for large-file support under
** some linux distributions, and possibly other unixes as well.
*/
#define _LARGE_FILE 1
#ifndef _FILE_OFFSET_BITS
# define _FILE_OFFSET_BITS 64
#endif
#define _LARGEFILE_SOURCE 1
/*
** System header files used by all modules
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
|