aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThomas Preud'homme <thomas.preudhomme@celest.fr>2011-08-05 20:25:12 +0200
committerThomas Preud'homme <thomas.preudhomme@celest.fr>2011-08-05 20:32:57 +0200
commit9ffd77f18d07c595e7bd1fcc032f3cbb7b09cc6f (patch)
treeceb174a4d3283e65ec72129c0510627909f247ca /include
parent0b6652003cba7dbf3b8b2b76564d81cbceacceb0 (diff)
downloadtinycc-9ffd77f18d07c595e7bd1fcc032f3cbb7b09cc6f.tar.gz
tinycc-9ffd77f18d07c595e7bd1fcc032f3cbb7b09cc6f.tar.bz2
Remove semicolon in x86-64 va_arg definition.
Diffstat (limited to 'include')
-rw-r--r--include/stdarg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdarg.h b/include/stdarg.h
index 6dd6e9e..666adf7 100644
--- a/include/stdarg.h
+++ b/include/stdarg.h
@@ -13,7 +13,7 @@ void __va_end(va_list ap);
#define va_start(ap, last) ((ap) = __va_start(__builtin_frame_address(0)))
#define va_arg(ap, type) \
- (*(type *)(__va_arg(ap, __builtin_va_arg_types(type), sizeof(type))));
+ (*(type *)(__va_arg(ap, __builtin_va_arg_types(type), sizeof(type))))
#define va_copy(dest, src) ((dest) = __va_copy(src))
#define va_end(ap) __va_end(ap)