aboutsummaryrefslogtreecommitdiff
path: root/tinycc/include
diff options
context:
space:
mode:
Diffstat (limited to 'tinycc/include')
-rw-r--r--tinycc/include/tccdefs.h4
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