opnsense-src/test/CodeGen/vfprintf.c

9 lines
197 B
C
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -emit-llvm-only %s
2009-12-15 13:49:47 -05:00
typedef struct _IO_FILE FILE;
int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
void foo(__builtin_va_list ap) {
vfprintf(0, " ", ap);
}