summaryrefslogtreecommitdiff
path: root/gcc/ginclude/stdarg.h
diff options
context:
space:
mode:
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1995-02-25 02:35:35 +0000
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1995-02-25 02:35:35 +0000
commitf51777d4aa40be58d40d90a4ee0ff77116baff45 (patch)
tree4e9e001b65b0bbfba6aa6b70df81e3a42d00b000 /gcc/ginclude/stdarg.h
parent87abc9cddfdccabe73323ecdd83077a00b8807bf (diff)
downloadgcc-f51777d4aa40be58d40d90a4ee0ff77116baff45.tar.gz
(va_end): Expand to a void expression instead of nothing.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9074 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ginclude/stdarg.h')
-rw-r--r--gcc/ginclude/stdarg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h
index e434a263086..d3dea626b4c 100644
--- a/gcc/ginclude/stdarg.h
+++ b/gcc/ginclude/stdarg.h
@@ -70,7 +70,7 @@ typedef void *__gnuc_va_list;
#undef va_end
void va_end (__gnuc_va_list); /* Defined in libgcc.a */
-#define va_end(AP)
+#define va_end(AP) ((void)0)
/* We cast to void * and then to TYPE * because this avoids
a warning about increasing the alignment requirement. */