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:
parent
eab151c994
commit
3c390d65e4
2 changed files with 12 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue