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.
10 lines
195 B
C
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
|