foxygit / GZDoom Log in
commits tags

/tools/re2c/src/util/c99_stdint.h · 294 B

raw
#ifndef _RE2C_UTIL_C99_STDINT_
#define _RE2C_UTIL_C99_STDINT_

#if defined(_MSC_VER) && _MSC_VER < 1500
#include "config.msc.h"
#else
#include "config.h"
#endif

// since gzdoom is built with at minimum c++17, we know stdint.h is available
#include <stdint.h>

#endif // _RE2C_UTIL_C99_STDINT_