diff options
Diffstat (limited to 'src/utime/utime.c')
| -rw-r--r-- | src/utime/utime.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/utime/utime.c b/src/utime/utime.c new file mode 100644 index 00000000..75ce6c1d --- /dev/null +++ b/src/utime/utime.c @@ -0,0 +1,11 @@ +#include "time.h" +#include <utime.h> + +int utime(const char *path, const struct utimbuf *times) +{ + (void)path; (void)times; + return -1; +} +/* +POSIX(1) +*/ |
