OSDN Git Service

Add a dummy "touch" to make it all build again.
authorRob Landley <rob@landley.net>
Mon, 18 Jun 2007 04:17:04 +0000 (00:17 -0400)
committerRob Landley <rob@landley.net>
Mon, 18 Jun 2007 04:17:04 +0000 (00:17 -0400)
toys/touch.c [new file with mode: 0644]

diff --git a/toys/touch.c b/toys/touch.c
new file mode 100644 (file)
index 0000000..51fd53f
--- /dev/null
@@ -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;
+}