Commit 9d661e56 by Richard Kenner

(__va_copy): New definition.

From-SVN: r13804
parent 20df0482
...@@ -94,6 +94,10 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */ ...@@ -94,6 +94,10 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */
- ((sizeof (TYPE) < __va_rounded_size (char) \ - ((sizeof (TYPE) < __va_rounded_size (char) \
? sizeof (TYPE) : __va_rounded_size (TYPE)))))) ? sizeof (TYPE) : __va_rounded_size (TYPE))))))
#endif /* big-endian */ #endif /* big-endian */
/* Copy __gnuc_va_list into another variable of this type. */
#define __va_copy(dest, src) (dest) = (src)
#endif /* _STDARG_H */ #endif /* _STDARG_H */
#endif /* not sh */ #endif /* not sh */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment