diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-01-03 14:08:55 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-01-03 14:08:55 +0000 |
commit | f8086ce091549315cd470bcea8c56fa4ee438f1b (patch) | |
tree | d72e268347fd3adc8cb53eaf4269e281dd46ab47 /sys/arch/hppa/include/ansi.h | |
parent | 31ec8d6d746e8bf365990ee271f1a77c3c1e3d0a (diff) |
put an mi wrapper around stdarg.h/varargs.h. gcc3 moved stdarg/varargs macros
to built-ins, so eventually we will have one version of these files.
Special adjustments for the kernel to cope: machine/stdarg.h -> sys/stdarg.h
and machine/ansi.h needs to have a _BSD_VA_LIST_ for syslog* prototypes.
okay millert@, drahn@, miod@.
Diffstat (limited to 'sys/arch/hppa/include/ansi.h')
-rw-r--r-- | sys/arch/hppa/include/ansi.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/ansi.h b/sys/arch/hppa/include/ansi.h index 571f7db9c4a..7c2e1ecd07a 100644 --- a/sys/arch/hppa/include/ansi.h +++ b/sys/arch/hppa/include/ansi.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ansi.h,v 1.5 2003/06/02 23:27:46 millert Exp $ */ +/* $OpenBSD: ansi.h,v 1.6 2004/01/03 14:08:52 espie Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -48,7 +48,11 @@ #define _BSD_SIZE_T_ unsigned int /* sizeof() */ #define _BSD_SSIZE_T_ int /* byte count or error */ #define _BSD_TIME_T_ int /* time() */ +#if defined(__GNUC__) && __GNUC__ >= 3 +#define _BSD_VA_LIST_ __builtin_va_list +#else #define _BSD_VA_LIST_ double * /* va_list */ +#endif #define _BSD_CLOCKID_T_ int #define _BSD_TIMER_T_ int |