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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#undef HAVE_FCNTL_H
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
#undef HAVE_LIMITS_H
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#undef HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#undef HAVE_WINDOWS_H
#ifdef HAVE_WINDOWS_H
#include <windows.h>
#endif
#undef HAVE_WINIOCTL_H
#ifdef HAVE_WINIOCTL_H
#include <winioctl.h>
#endif
#undef HAVE_LIBDSK_H
#ifdef HAVE_LIBDSK_H
#include <libdsk.h>
#endif
#undef HAVE_SYS_TYPES_H
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#undef HAVE_SYS_STAT_H
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#undef HAVE_SYS_UTIME_H
#ifdef HAVE_SYS_UTIME_H
#include <sys/utime.h>
#endif
#undef HAVE_UTIME_H
#ifdef HAVE_UTIME_H
#include <utime.h>
#endif
#undef NEED_NCURSES
#undef HAVE_NCURSES_NCURSES_H
/* Define either for large file support, if your OS needs them. */
#undef _FILE_OFFSET_BITS
#undef _LARGE_FILES
#ifndef _POSIX_PATH_MAX
#define _POSIX_PATH_MAX _MAX_PATH
#endif
/* There is not standard header for this, yet it is needed for
* timezone changes.
*/
#ifndef environ
extern char **environ;
#endif
/* If types are missing, the script defines.awk contained
* in configure.status should create definitions here.
*/
|