xref: /xnu-11215.41.3/tests/vm/hello.c (revision 33de042d024d46de5ff4e89f2471de6608e37fa4)
1 #include <stdio.h>
2 #include <stdlib.h>
3 int
main(void)4 main(void)
5 {
6 	printf("hello, world!\n");
7 	return 0;
8 }
9