blob: 1d4a2616831f61e230561aaa0c3fad4285397e3e [file] [log] [blame]
Chris Lattnerb50eaea2004-07-07 02:20:02 +00001static int unused_func(void) {
2 return 1;
3}
4
5int foo(void) {
6 (void)unused_func; /* avoid compiler warning */
7 return 2;
8}