summaryrefslogtreecommitdiff
path: root/src/stdarg/va_end.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdarg/va_end.c')
-rw-r--r--src/stdarg/va_end.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/stdarg/va_end.c b/src/stdarg/va_end.c
index 00588526..2934e600 100644
--- a/src/stdarg/va_end.c
+++ b/src/stdarg/va_end.c
@@ -1,19 +1,18 @@
#include <stdarg.h>
-#define va_end(ap) __builtin_va_end(ap)
/** end processing unnamed arguments **/
+#define va_end(ap) __builtin_va_end(ap)
+
/***
-stops processing unnamed arguments that were
-previously begun with a call to FUNCTION(va_start) so that the enclosing function
-may return normally.
+stops processing unnamed arguments that were previously begun with a call to
+FUNCTION(va_start) so that the enclosing function may return normally.
***/
/*
PROTOTYPE(void va_end(va_list ap);)
UNDEFINED(ARGUMENT(ap) was not initialized by FUNCTION(va_start))
UNDEFINED(THIS() is not called in the same function as FUNCTION(va_start))
-*/
-/*
+
STDC(1)
*/