Changeset 904 in MondoRescue for trunk/mindi-busybox/include/platform.h


Ignore:
Timestamp:
Oct 25, 2006, 1:51:57 AM (18 years ago)
Author:
Bruno Cornec
Message:

merge -r890:902 $SVN_M/branches/stable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/mindi-busybox/include/platform.h

    r821 r904  
    7373# ifndef __extension__
    7474#  define __extension__
     75# endif
     76#endif
     77
     78/* gcc-2.95 had no va_copy but only __va_copy. */
     79#if !__GNUC_PREREQ (3,0)
     80# include <stdarg.h>
     81# if !defined va_copy && defined __va_copy
     82#  define va_copy(d,s) __va_copy((d),(s))
    7583# endif
    7684#endif
Note: See TracChangeset for help on using the changeset viewer.