changeset 130:de3b6d914468

Add a dummy "touch" to make it all build again.
author Rob Landley <rob@landley.net>
date Mon, 18 Jun 2007 00:17:04 -0400
parents 0dfead29c893
children c374094cb60c
files toys/touch.c
diffstat 1 files changed, 14 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/toys/touch.c	Mon Jun 18 00:17:04 2007 -0400
@@ -0,0 +1,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;
+}