aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Simonson <ian.simonson@protonmail.com>2024-03-13 14:58:56 -0700
committerIan Simonson <ian.simonson@protonmail.com>2024-03-13 14:58:56 -0700
commit34c4389d754e52583c0bb767f12602db531bc488 (patch)
treedd7f42c91c5d36d15b90513fc166b57a3a7a586a
parent8917a7ef886a6d5e21feb0e78217b321fa2b58cd (diff)
No need for timeval definition
It already existed so lets just use that rather than redeclaring it
-rw-r--r--core/sys/darwin/darwin.odin5
1 files changed, 0 insertions, 5 deletions
diff --git a/core/sys/darwin/darwin.odin b/core/sys/darwin/darwin.odin
index ed4783816..2af7c47c6 100644
--- a/core/sys/darwin/darwin.odin
+++ b/core/sys/darwin/darwin.odin
@@ -3,11 +3,6 @@ package darwin
Bool :: b8
-timeval :: struct {
- tv_sec: int,
- tv_usec: int,
-}
-
RUsage :: struct {
ru_utime: timeval,
ru_stime: timeval,