diff options
Diffstat (limited to 'binutils/testsuite/binutils-all/bintest.c')
-rw-r--r-- | binutils/testsuite/binutils-all/bintest.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/binutils/testsuite/binutils-all/bintest.c b/binutils/testsuite/binutils-all/bintest.c deleted file mode 100644 index e63d589..0000000 --- a/binutils/testsuite/binutils-all/bintest.c +++ /dev/null @@ -1,30 +0,0 @@ -/* - * 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++; - -} - |