1 #include "version.h"
2 
3 /* Define if you have the strftime function.  */
4 #define HAVE_STRFTIME 1
5 
6 /* Define if you have the vprintf function.  */
7 #define HAVE_VPRINTF 1
8 
9 /* Define if you have the ANSI C header files.  */
10 #define STDC_HEADERS 1
11 
12 /* Integer 16bit type */
13 #define INT16 short
14 
15 /* Integer 3bit type */
16 #define INT32 long
17 
18 /* Platform definition */
19 #define MSWINDOWS 1
20 
21 /* Low memory model */
22 /* #undef LOWMEMORY */
23 
24 /* The number of bytes in a int.  */
25 #define SIZEOF_INT 4
26 
27 /* The number of bytes in a long.  */
28 #define SIZEOF_LONG 4
29 
30 /* The number of bytes in a short.  */
31 #define SIZEOF_SHORT 2
32 
33 /* Define if you have the getopt function.  */
34 #define HAVE_GETOPT 1
35 
36 /* Define if you have the mkdir function.  */
37 #define HAVE_MKDIR 1
38 
39 /* Define if you have the rename function.  */
40 #define HAVE_RENAME 1
41 
42 /* Define if you have the strerror function.  */
43 #define HAVE_STRERROR 1
44 
45 /* Define if you have the strspn function.  */
46 #define HAVE_STRSPN 1
47 
48 /* Define if you have the <fcntl.h> header file.  */
49 #define HAVE_FCNTL_H 1
50 
51 /* Define if you have the <string.h> header file.  */
52 #define HAVE_STRING_H
53 
54 /* Define if you have the <sys/utime.h> header file.  */
55 #define HAVE_SYS_UTIME_H
56 
57 /* Define if compiler has function prototypes */
58 #define PROTOTYPES 1
59 
60 /* is struct utimbuf defined in sys/utime.h */
61 #define HAVE_UTIMBUF 1
62 
63