blob: 12dd7ac08b33ce87c9c641239096a57866f559d3 [file] [log] [blame]
/* vi: set sw=4 ts=4: */
/*
* hello.c - A hello world program.
*
* Not in SUSv3.
*/
#include "toys.h"
void hello_main(void)
{
printf("Hello world\n");
}