source: trunk/testcase/weak/weak-1.c@ 305

Last change on this file since 305 was 305, checked in by bird, 22 years ago

Initial testcase.

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 176 bytes
Line 
1/* everything is weak in this testcase */
2#pragma weak bar
3#pragma weak foo
4#pragma weak doo
5int bar = -1;
6
7int foo(void)
8{
9 return -1;
10}
11
12int doo(void)
13{
14 return -2;
15}
16
Note: See TracBrowser for help on using the repository browser.