BSD 4 development
[unix-history] / bill / put.c
CommitLineData
a4b3f291
BJ
1main(argc, argv)
2char **argv;
3{
4char buf[1024];
5close(1);
6open("/dev/rrp2h", 1);
7lseek(1, 512*atoi(argv[1]), 0);
8write(1, buf, 1024);
9}