aboutsummaryrefslogtreecommitdiff
path: root/toys/hello.c
blob: 1f587723707c5e8e7af6b3c55ad866548522ee61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* vi: set sw=4 ts=4: */
/*
 * hello.c - A hello world program.
 */

#include "toys.h"

int hello_main(void)
{
	printf("Hello world\n");
	return 0;
}