brintos

brintos / llvm-project-archived public Read only

0
0
Text · 224 B · 8bdce6b Raw
10 lines · c
1// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null2 3typedef struct _IO_FILE FILE;4extern FILE *stderr;5int fprintf(FILE * restrict stream, const char * restrict format, ...);6 7void test(void) {8  fprintf(stderr, "testing\n");9}10