aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2007-06-18 00:17:04 -0400
committerRob Landley <rob@landley.net>2007-06-18 00:17:04 -0400
commit56dac2a9ca1625af5343957a19686bceab277129 (patch)
tree15f32264066eb0b47486051c3949241b5d2733b2
parent5288145aa65813308c52e56714bea7728bcd4175 (diff)
downloadtoybox-56dac2a9ca1625af5343957a19686bceab277129.tar.gz
Add a dummy "touch" to make it all build again.
-rw-r--r--toys/touch.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/toys/touch.c b/toys/touch.c
new file mode 100644
index 00000000..51fd53f2
--- /dev/null
+++ b/toys/touch.c
@@ -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;
+}