view toys/touch.c @ 146:99e651512aa4

Get toysh.c to start using the option parsing logic, and some minor cleanup.
author Rob Landley <rob@landley.net>
date Fri, 19 Oct 2007 19:12:48 -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;
}