repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2002-06-25-FWriteInterfaceFailure.c
blob
8bdce6bb1a0583de52876017d9315b8aab44e373
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
7
void
test
(
void
) {
8
fprintf
(
stderr
,
"testing
\n
"
);
9
}