git.cappig.dev / apheleiaOS.git master

1
#include <errno.h>
2
#include <utime.h>
3
4
int utime(const char *filename, const struct utimbuf *times) {
5
    (void)filename;
6
    (void)times;
7
    errno = ENOSYS;
8
    return -1;
9
}