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
/
weak-2.c
blob
b93a8ef9a529f10f781adbe2f486dea890ba0730
1
/* { dg-do run } */
2
/* { dg-require-weak "" } */
3
/* { dg-additional-sources "weak-2a.c weak-2b.c" } */
4
5
#include <stdlib.h>
6
7
extern
int
foo
(
void
);
8
9
int
main
(
void
) {
10
11
if
(
foo
())
12
exit
(
0
);
13
else
14
abort
();
15
}