diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-21 02:59:20 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-21 02:59:20 +0200 |
commit | 5451178c63d9bffddf48d2f854201b71f9d5e25c (patch) | |
tree | 03498ff7f3e2a7dbf75180e886df4670a9efedf2 /LibC/sys/time.h | |
parent | 5c5ce4f8859fa25e1a0e75870b18c8d36f7b4727 (diff) | |
download | serenity-5451178c63d9bffddf48d2f854201b71f9d5e25c.zip |
LibC: Minor compat tweak, move struct timezone to sys/time.h
Diffstat (limited to 'LibC/sys/time.h')
-rw-r--r-- | LibC/sys/time.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/LibC/sys/time.h b/LibC/sys/time.h index 970aa3f971..9d93686923 100644 --- a/LibC/sys/time.h +++ b/LibC/sys/time.h @@ -4,6 +4,11 @@ __BEGIN_DECLS +struct timezone { + int tz_minuteswest; + int tz_dsttime; +}; + int gettimeofday(struct timeval* __restrict__, void* __restrict__) __attribute__((nonnull(1))); __END_DECLS |