1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:47:44 +00:00

LibC: Implement utimes function

This commit is contained in:
Jelle Raaijmakers 2021-03-29 00:35:00 +02:00 committed by Andreas Kling
parent eab151c994
commit 3c390d65e4
2 changed files with 12 additions and 0 deletions

View file

@ -45,6 +45,7 @@ struct timezone {
int adjtime(const struct timeval* delta, struct timeval* old_delta);
int gettimeofday(struct timeval* __restrict__, void* __restrict__) __attribute__((nonnull(1)));
int settimeofday(struct timeval* __restrict__, void* __restrict__) __attribute__((nonnull(1)));
int utimes(const char* pathname, const struct timeval[2]);
static inline void timeradd(const struct timeval* a, const struct timeval* b, struct timeval* out)
{