llvm-project/clang/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
224 B
C
Raw Normal View History

// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
typedef struct _IO_FILE FILE;
extern FILE *stderr;
int fprintf(FILE * restrict stream, const char * restrict format, ...);
void test(void) {
fprintf(stderr, "testing\n");
}