Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / pmax / test / t03.c
blobc54660bbca1fb5d1173029e0f450da7f0f9763b8
1 char hello[] = "hello\n";
3 main(argc, argv)
4 char **argv;
6 int fd = open("/dev/console", 1);
8 hello[0] = 'H';
9 if (fd >= 0)
10 write(fd, hello, 6);
11 return(0);