/* */ #ifndef _D_COMMON_H_ #define _D_COMMON_H_ #ifdef __MINGW32__ # undef SIZE_MAX # ifndef _OFF_T_ # define _OFF_T_ typedef long long _off_t; # ifndef _NO_OLDNAMES typedef _off_t off_t; # endif // !_NO_OLDNAMES # endif // !_OFF_T_ #endif // __MINGW32__ #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef __MINGW32__ #ifdef malloc # undef malloc #endif #ifdef realloc # undef realloc #endif #endif // __MINGW32__ #ifdef ENABLE_NLS # include "gettext.h" # define _(String) gettext(String) #else // ENABLE_NLS # define _(String) String #endif // use C99 limit macros #define __STDC_LIMIT_MACROS // included here for compatibility issues with old compiler/libraries. #include #endif // _D_COMMON_H_