diff options
Diffstat (limited to 'com32/samples')
-rw-r--r-- | com32/samples/Makefile | 2 | ||||
-rw-r--r-- | com32/samples/cat.c | 36 |
2 files changed, 1 insertions, 37 deletions
diff --git a/com32/samples/Makefile b/com32/samples/Makefile index 482769ef..bee2b992 100644 --- a/com32/samples/Makefile +++ b/com32/samples/Makefile @@ -17,7 +17,7 @@ topdir = ../.. include ../MCONFIG -all: hello.c32 cat.c32 resolv.c32 serialinfo.c32 \ +all: hello.c32 resolv.c32 serialinfo.c32 \ localboot.c32 \ fancyhello.c32 fancyhello.lnx \ keytest.c32 keytest.lnx \ diff --git a/com32/samples/cat.c b/com32/samples/cat.c deleted file mode 100644 index 3930f744..00000000 --- a/com32/samples/cat.c +++ /dev/null @@ -1,36 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <console.h> - -int main(int argc, char *argv[]) -{ - FILE *f; - int ch; - int i; - - openconsole(&dev_stdcon_r, &dev_stdcon_w); - - printf("argv = %p\n", argv); - for (i = 0; i <= argc; i++) - printf("argv[%d] = %p = \"%s\"\n", i, argv[i], argv[i]); - - if (argc < 2) { - fprintf(stderr, "Usage: cat.c32 filename\n"); - return 1; - } - - printf("File = %s\n", argv[1]); - - f = fopen(argv[1], "r"); - if (!f) { - fprintf(stderr, "File name \"%s\" does not exist.\n", argv[1]); - return 1; - } - - while ((ch = getc(f)) != EOF) - putchar(ch); - - fclose(f); - - return 0; -} |