dfhack/library/include/dfhack/DFIntegers.h

20 lines
378 B
C

/*
This file is a wrapper for stdint.h
Visual Studio doesn't have stdint.h
stdint.h is part of the C99 standard. It's ancient and simply should be there. FAIL
2009-10-23 12:05:42 -06:00
You can turn off the include by defining SKIP_DFHACK_STDINT
*/
#pragma once
2009-10-23 12:05:42 -06:00
#ifndef SKIP_DFHACK_STDINT
#ifndef _MSC_VER
#include <stdint.h>
#else
2010-05-26 00:42:09 -06:00
#include "DFstdint_win.h"
2009-10-23 12:05:42 -06:00
#endif
#endif