aboutsummaryrefslogtreecommitdiff
path: root/toys/touch.c
blob: 51fd53f23ee8f433c4cb377cefcae3ba75f8219b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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;
}