xref: /llvm-project/clang/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c (revision 1ea584377e7897f7df5302ed9cd378d17be14fbf)
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2 
3 typedef struct _IO_FILE FILE;
4 extern FILE *stderr;
5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
6 
test(void)7 void test(void) {
8   fprintf(stderr, "testing\n");
9 }
10