only define va_copy for gcc2.95

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22581 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2007-10-15 23:08:08 +00:00
parent 7ebabb8644
commit e27e4f8d51
2 changed files with 4 additions and 0 deletions

View File

@ -1904,7 +1904,9 @@
/* #undef utime */
/* Define as a macro for copying va_list variables. */
#if __GNUC__ < 3
#define va_copy __va_copy
#endif
/* Define to empty if the keyword `volatile' does not work. Warning: valid
code using `volatile' can become incorrect without. Disable with care. */

View File

@ -604,4 +604,6 @@
/* #undef stack_t */
/* Define as a macro for copying va_list variables. */
#if __GNUC__ < 3
#define va_copy gl_va_copy
#endif