diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-10-18 16:07:21 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-10-18 16:07:21 +0000 |
| commit | e3ddd70789f3430b67730357c4dafcbc68a53d61 (patch) | |
| tree | 19938edc6bf631e142a62bf3cf61ad10cf48d888 /sys/arm | |
| parent | ff33c3ba385dcc5208b8f45d5bcb702c03a5e3dd (diff) | |
Notes
Diffstat (limited to 'sys/arm')
| -rw-r--r-- | sys/arm/include/ansi.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arm/include/ansi.h b/sys/arm/include/ansi.h index ca6d5f2f588ee..d429b86cf0ac2 100644 --- a/sys/arm/include/ansi.h +++ b/sys/arm/include/ansi.h @@ -76,7 +76,10 @@ #define _BSD_VA_LIST_ __builtin_va_list /* internally known to gcc */ #else #define _BSD_VA_LIST_ char * /* va_list */ -#endif /*__GNUC__*/ +#endif /* post GCC 2.95 */ +#if defined __GNUC__ +typedef _BSD_VA_LIST_ __gnuc_va_list; /* compatibility w/GNU headers*/ +#endif /* * The rune type above is declared to be an ``int'' instead of the more natural |
