diff options
Diffstat (limited to 'Libraries/LibC/sys/time.h')
-rw-r--r-- | Libraries/LibC/sys/time.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibC/sys/time.h b/Libraries/LibC/sys/time.h index f660c2b24a..ac3013747e 100644 --- a/Libraries/LibC/sys/time.h +++ b/Libraries/LibC/sys/time.h @@ -43,6 +43,7 @@ struct timezone { }; int gettimeofday(struct timeval* __restrict__, void* __restrict__) __attribute__((nonnull(1))); +int settimeofday(struct timeval* __restrict__, void* __restrict__) __attribute__((nonnull(1))); static inline void timeradd(const struct timeval* a, const struct timeval* b, struct timeval* out) { |