view toys/touch.c @ 143:9cbb323f297f

Break out dirtree.c and let it call a function instead of returning the data.
author Rob Landley <rob@landley.net>
date Thu, 04 Oct 2007 02:04:10 -0500
parents de3b6d914468
children ec6e13b2495d
line wrap: on
line source

/* vi: set sw=4 ts=4: */
/*
 * touch.c - Modify a file's timestamps (or length).
 */

#include "toys.h"

# warning touch unimplemented

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