aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2002-06-25-FWriteInterfaceFailure.c
blob: 24c67d1520a13f50250b38558e4f64ea71b03f74 (plain) (blame)
1
2
3
4
5
6
7
8
9
// 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() {
  fprintf(stderr, "testing\n");
}