home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InfoMagic Source Code 1993 July
/
THE_SOURCE_CODE_CD_ROM.iso
/
gnu
/
binutils-2.2.1
/
binutils
/
testsuite
/
binutils.all
/
bintest.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-04-07
|
252 b
|
31 lines
/*
* nmtest.c -- this is the C code portion of tests for the GNU binutils
*/
main(argc, argv)
int argc;
char *argv[];
{
char two();
int one();
one();
two();
}
int
one ()
{
int i, j;
j = i++;
}
char
two ()
{
int i, j;
i = j++;
}