view toys/hello.c @ 183:93899f7c3e0c

Rebuild toybox when a header file changes
author Charlie Shepherd <masterdriverz@gentoo.org>
date Sun, 25 Nov 2007 16:54:29 +0000
parents d87d8a056295
children 25447caf1b4b
line wrap: on
line source

/* 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;
}