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.dg
/
special
/
wkali-2a.c
blob
79dde1455402238c4a7c6f45fda15c9a2c357e8d
1
/* { dg-do run } */
2
3
extern
int
foo
(
void
)
__attribute__
((
weak
,
alias
(
"bar_a"
)));
4
5
int
bar_a
(
void
) {
6
return
0
;
7
}