[L4alpha-cvscommit] CVS: L4Alpha/include/klibc stdarg.h,1.2,1.3
Status: Beta
Brought to you by:
dpotts
|
From: Daniel P. <dp...@us...> - 2002-12-02 05:29:40
|
Update of /cvsroot/l4alpha/L4Alpha/include/klibc
In directory sc8-pr-cvs1:/tmp/cvs-serv6314/include/klibc
Modified Files:
stdarg.h
Log Message:
Index: stdarg.h
===================================================================
RCS file: /cvsroot/l4alpha/L4Alpha/include/klibc/stdarg.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** stdarg.h 13 Apr 2001 05:45:51 -0000 1.2
--- stdarg.h 2 Dec 2002 05:29:35 -0000 1.3
***************
*** 29,32 ****
--- 29,36 ----
Thus, va_arg (..., short) is not valid. */
+ #if (GCC_MAJOR > 2)
+ #include "stdarg-gcc3.h"
+ #else
+
#ifndef _STDARG_H
#ifndef _ANSI_STDARG_H_
***************
*** 229,230 ****
--- 233,236 ----
#endif /* not _ANSI_STDARG_H_ */
#endif /* not _STDARG_H */
+
+ #endif
|