repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20001011-1.c
blob
ffdcb9f52fe719c174f5609b9cf1143d8177bf7b
1
extern
void
abort
(
void
);
2
extern
int
strcmp
(
const char
*,
const char
*);
3
4
int
foo
(
const char
*
a
)
5
{
6
return
strcmp
(
a
,
"main"
);
7
}
8
9
int
main
(
void
)
10
{
11
if
(
foo
(
__FUNCTION__
))
12
abort
();
13
return
0
;
14
}