diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-14 23:51:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-14 23:51:34 +0000 |
commit | 47a7456ce1e9af6e957cfb8639dd47b5a3583a83 (patch) | |
tree | 03e32ab74ca9994c12999834f3339b66ac432ff8 /sys/arch/hppa/include | |
parent | 7ab46340a51beb790449437b4135985399c80005 (diff) |
make va_arg() map to nothing; ok millert
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/stdarg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/stdarg.h b/sys/arch/hppa/include/stdarg.h index bbe69721372..3bfcc43f46c 100644 --- a/sys/arch/hppa/include/stdarg.h +++ b/sys/arch/hppa/include/stdarg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdarg.h,v 1.5 2005/12/14 21:46:30 millert Exp $ */ +/* $OpenBSD: stdarg.h,v 1.6 2005/12/14 23:51:32 deraadt Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -57,6 +57,6 @@ typedef double *va_list; ((dest) = (src)) #endif -#define va_end(ap) +#define va_end(ap) #endif /* !_MACHINE_STDARG_H */ |