PERFORCE change 132310 for review

Oleksandr Tymoshenko gonzo at FreeBSD.org
Wed Jan 2 09:19:33 PST 2008


http://perforce.freebsd.org/chv.cgi?CH=132310

Change 132310 by gonzo at gonzo_jeeves on 2008/01/02 17:19:10

	o Use __builtin_va_start instead of __builtin_stdarg_start. 
	  GCC4 obsoletes the former and  __builtin_va_start was present in 
	  all GCC version 3.1 and later.

Affected files ...

.. //depot/projects/mips2-jnpr/src/sys/mips/include/stdarg.h#4 edit

Differences ...

==== //depot/projects/mips2-jnpr/src/sys/mips/include/stdarg.h#4 (text+ko) ====

@@ -15,7 +15,7 @@
 #define	_VA_LIST_DECLARED
 typedef __va_list	va_list;
 #endif
-#define	va_start(v,l)	__builtin_stdarg_start((v),l)
+#define	va_start(v,l)	__builtin_va_start((v),l)
 #define	va_end		__builtin_va_end
 #define	va_arg		__builtin_va_arg
 #define	va_copy		__builtin_va_copy


More information about the p4-projects mailing list