view toys/hello.c @ 214:98820d1eaa79

Upgrade patch to understand creating and deleting files.
author Rob Landley <rob@landley.net>
date Thu, 20 Dec 2007 06:30:19 -0600
parents 30a6db5a95c2
children d4176f3f3835
line wrap: on
line source

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