Last change
on this file was 2036, checked in by bird, 20 years ago |
Initial revision
|
-
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:
233 bytes
|
Line | |
---|
1 | #include <stdio.h>
|
---|
2 | extern int baz (void);
|
---|
3 | extern int xyzzy (void);
|
---|
4 | int
|
---|
5 | bar (void)
|
---|
6 | {
|
---|
7 | printf ("%s:%s\n", __FILE__, __func__);
|
---|
8 | return baz () + xyzzy ();;
|
---|
9 | }
|
---|
10 |
|
---|
11 | int
|
---|
12 | back (void)
|
---|
13 | {
|
---|
14 | printf ("%s:%s\n", __FILE__, __func__);
|
---|
15 | return -1;
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.