#ifndef RSK_COMPAT_H #define RSK_COMPAT_H #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef __WIN32__ #include "win32.h" #endif #ifndef HAVE_GETOPT #include "getopt.h" #else #ifdef HAVE_GETOPT_H #include #endif #endif #ifdef HAVE_INTTYPES_H #include #endif #ifdef HAVE_STDINT_H #include #endif #ifdef TIME_WITH_SYS_TIME #include #include #else #ifdef HAVE_SYS_TIME_H #include #else #include #endif #endif #endif