From 34c4389d754e52583c0bb767f12602db531bc488 Mon Sep 17 00:00:00 2001 From: Ian Simonson Date: Wed, 13 Mar 2024 14:58:56 -0700 Subject: [PATCH] No need for timeval definition It already existed so lets just use that rather than redeclaring it --- core/sys/darwin/darwin.odin | 5 ----- 1 file changed, 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,