toaruos/userspace/touch.c
Kevin Lange c88d6dcb4f Add or update the heading comments for user apps.
Adds useful descriptions to ones that were lacking them, updates ones
that were innacurate, etc.
2012-07-06 21:08:28 -07:00

21 lines
310 B
C

/*
* touch
*
* Creates a file or updates its last-modified date.
* (in theory)
*/
#include <stdio.h>
#include <string.h>
int main(int argc, char * argv[]) {
if (argc < 2) {
fprintf(stderr, "%s: argument expected\n", argv[0]);
return 1;
}
FILE * f = fopen(argv[1], "w");
fclose(f);
return 0;
}