historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/roms/openbios/utils/ofclient/ofclient.c

10 lines
125 B
C
Raw Normal View History

2024-01-16 17:20:27 +00:00
#include "of1275.h"
int write(int fd, char *buf, int len);
int main(void)
{
write(1, "Hello world!\n", 13 );
return 0;
}