mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 20:22:24 +00:00
Add SYSTEM_INT64 and make tests name independent.
This commit is contained in:
parent
f5e97fdd87
commit
a39eefaf18
10 changed files with 14 additions and 12 deletions
|
|
@ -9,6 +9,8 @@
|
|||
#include <string.h> // For memcpy ...
|
||||
#include <stdint.h> // For uintptr_t ...
|
||||
|
||||
typedef long SYSTEM_INT64;
|
||||
|
||||
#else
|
||||
|
||||
// Building for Windows platform with either mingw under cygwin, or the MS C compiler
|
||||
|
|
@ -20,8 +22,9 @@
|
|||
typedef unsigned int uintptr_t;
|
||||
#endif /* _WIN64 */
|
||||
|
||||
typedef long long SYSTEM_INT64
|
||||
typedef unsigned int uint32_t;
|
||||
void * __cdecl memcpy(void * dest, const void * source, size_t size);
|
||||
void * __cdecl memcpy(void *dest, const void *source, size_t size);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue