diff options
author | Rob Landley <rob@landley.net> | 2007-06-18 00:17:04 -0400 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-06-18 00:17:04 -0400 |
commit | 56dac2a9ca1625af5343957a19686bceab277129 (patch) | |
tree | 15f32264066eb0b47486051c3949241b5d2733b2 | |
parent | 5288145aa65813308c52e56714bea7728bcd4175 (diff) | |
download | toybox-56dac2a9ca1625af5343957a19686bceab277129.tar.gz |
Add a dummy "touch" to make it all build again.
-rw-r--r-- | toys/touch.c | 14 |
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; +} |