mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +00:00
6da052fd6a
The conform/ test expectations for stdarg.h were wrongly missing an expectation of va_copy for XOPEN2K (based on C99, so including that macro). This patch fixes this. Tested for x86_64 and x86. * conform/data/stdarg.h-data [XOPEN2K] (va_copy): Require macro. * conform/Makefile (test-xfail-XOPEN2K/stdarg.h/conform): Remove variable.
15 lines
282 B
Plaintext
15 lines
282 B
Plaintext
type va_list
|
|
|
|
// XXX We didn't check the parameters.
|
|
macro va_start
|
|
macro va_arg
|
|
macro va_end
|
|
|
|
#if defined ISO99 || defined ISO11 || defined XOPEN2K || defined POSIX2008 || defined XOPEN2K8
|
|
macro va_copy
|
|
#endif
|
|
|
|
#if !defined ISO && !defined ISO99 && !defined ISO11
|
|
allow *_t
|
|
#endif
|