aboutsummaryrefslogtreecommitdiff
path: root/toys/hello.c
blob: 12dd7ac08b33ce87c9c641239096a57866f559d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 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");
}