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