blob: ddfef1410cd2c08af8fdb1fcf6ac4d85a7146adf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "stdinc.h"
#include "dat.h"
#include "fns.h"
void
usage(void)
{
fprint(2, "usage: readifile file\n");
threadexitsall("usage");
}
void
threadmain(int argc, char *argv[])
{
IFile ifile;
ARGBEGIN{
default:
usage();
}ARGEND
if(argc != 1)
usage();
if(readifile(&ifile, argv[0]) < 0)
sysfatal("readifile %s: %r", argv[0]);
write(1, ifile.b->data, ifile.b->len);
threadexitsall(nil);
}
|