android_external_toybox/toys/touch.c
2007-06-18 00:17:04 -04:00

15 lines
198 B
C

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