Files
ispc/winstuff/stdint.h
Matt Pharr 65f3252760 Various fixes to test running script for Windows.
Also, removed the --valgrind option and replaced it with a more
general --wrap-exe option, which can be used both for running
Valgrind and SDE.
2012-01-26 10:56:29 -08:00

10 lines
195 B
C

#ifndef MY_STDINT_H
#define MY_STDINT_H 1
typedef unsigned __int32 uint32_t;
typedef __int32 int32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#endif // MY_STDINT_H