summaryrefslogtreecommitdiff
path: root/LibC/sys/time.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-21 02:59:20 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-21 02:59:20 +0200
commit5451178c63d9bffddf48d2f854201b71f9d5e25c (patch)
tree03498ff7f3e2a7dbf75180e886df4670a9efedf2 /LibC/sys/time.h
parent5c5ce4f8859fa25e1a0e75870b18c8d36f7b4727 (diff)
downloadserenity-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.h5
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