home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
gnu
/
djgpp
/
src
/
binutils.2
/
binutils
/
testsuit
/
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-05-30
|
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++;
}