diff options
| author | Uneven Prankster <unevenprankster@protonmail.com> | 2023-08-12 12:59:59 -0300 |
|---|---|---|
| committer | Uneven Prankster <unevenprankster@protonmail.com> | 2023-08-12 12:59:59 -0300 |
| commit | e7379bed59af0f50126af61953bc4f10af04a4dd (patch) | |
| tree | d99e98f0709821edccfa2ef1cbba9381a46abb22 /tinycc/include | |
| parent | a2cb2ee59296e466bab94d9a96c331648ef212b0 (diff) | |
Few tweaks for proper compilation, config.h changes and removed tccdefs.h usage. Gunner's TCC fork is further functionally freestanding now.
Diffstat (limited to 'tinycc/include')
| -rw-r--r-- | tinycc/include/tccdefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tinycc/include/tccdefs.h b/tinycc/include/tccdefs.h index f6c25a4..4e03cb9 100644 --- a/tinycc/include/tccdefs.h +++ b/tinycc/include/tccdefs.h @@ -193,7 +193,7 @@ #define __builtin_va_copy(dest, src) (*(dest) = *(src)) #else /* _WIN64 */ - typedef char *__builtin_va_list; + typedef char* __builtin_va_list; #define __builtin_va_arg(ap, t) ((sizeof(t) > 8 || (sizeof(t) & (sizeof(t) - 1))) \ ? **(t **)((ap += 8) - 8) : *(t *)((ap += 8) - 8)) #endif @@ -322,4 +322,4 @@ __BUILTIN_EXTERN(parity, unsigned) #undef __BUILTIN_EXTERN - #endif /* ndef __TCC_PP__ */ + #endif /* ndef __TCC_PP__ */
\ No newline at end of file |
