2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
7 #include <exec/types.h>
9 #include <dos/dosextens.h>
11 #include <proto/dos.h>
13 int main(int argc
, char **argv
) {
19 if ((in
= Open(argv
[1], MODE_OLDFILE
)) == BNULL
) {
20 Fault(IoErr(), "minicat", buf
, 255);
21 fprintf(stderr
, "%s\n", buf
);
30 while ((len
= Read(in
, buf
, 256)) > 0)