repo.or.cz
/
libc-test.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
wcstol: implement 64-bit tests
[libc-test.git]
/
src
/
api
/
stdarg.c
blob
7211594ce187d30e557154e52042238999391e44
1
#include <stdarg.h>
2
#define T(t) (t*)0;
3
static void
f
()
4
{
5
T
(
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
}