old-cross-binutils/binutils/testsuite/binutils-all/bintest.c
Ian Lance Taylor 7f23bcab2c * VMS does not permits `.' in directory names. Renamed
binutils.all to binutils-all.
1994-09-29 16:46:53 +00:00

30 lines
252 B
C

/*
* 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++;
}