diff options
Diffstat (limited to 'toys')
-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; +} |