diff options
author | dzwdz | 2023-08-24 19:10:35 +0200 |
---|---|---|
committer | dzwdz | 2023-08-24 19:10:35 +0200 |
commit | 3e09037780ca95633749be3acd52e817eed7f98c (patch) | |
tree | 83bcf5026cd4383809c81c5f38473a6b1e46755e /src/libc/include/utime.h | |
parent | 292b2386d766826b15f5ca084d37aa2c485fdda6 (diff) |
libc: get most of binutils to compile
Diffstat (limited to 'src/libc/include/utime.h')
-rw-r--r-- | src/libc/include/utime.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libc/include/utime.h b/src/libc/include/utime.h new file mode 100644 index 0000000..4ae34ed --- /dev/null +++ b/src/libc/include/utime.h @@ -0,0 +1,9 @@ +#pragma once +#include <sys/time.h> + +struct utimbuf { + time_t actime; + time_t modtime; +}; + +int utime(const char *fn, const struct utimbuf *times); |