xref: /third_party/musl/libc-test/src/api/stdarg.c (revision 570af302)
1#include <stdarg.h>
2#define T(t) (t*)0;
3static void f()
4{
5T(va_list)
6#ifndef va_start
7#error no va_start
8#endif
9#ifndef va_arg
10#error no va_arg
11#endif
12#ifndef va_end
13#error no va_end
14#endif
15#ifndef va_copy
16#error no va_copy
17#endif
18}
19