NetBSD/sys/arch/pmax/test/t01.c

10 lines
124 B
C
Raw Normal View History

main(argc, argv)
char **argv;
{
int fd = open("/dev/console", 1);
if (fd >= 0)
write(fd, "Hello\n", 6);
return(0);
}