view toys/hello.c @ 104:1c2f6d2e25de

Precalculate block and inode usage given a starting file tree. This compiles, probably doesn't actually work yet.
author Rob Landley <rob@landley.net>
date Sun, 18 Feb 2007 16:24:55 -0500
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;
}