YouCompleteMe/cpp/llvm/tools/clang/test/PCH/va_arg.h
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

9 lines
193 B
C

// Header for PCH test va_arg.c
typedef __builtin_va_list va_list;
char *f (char * (*g) (char **, int), char **p, ...) {
char *s;
va_list v;
s = g (p, __builtin_va_arg(v, int));
}