From 044e64beb002d11fa8e1b5c2d2153c3891b1bbd4 Mon Sep 17 00:00:00 2001 From: Chris Heyes Date: Fri, 1 Nov 2019 19:39:26 +0000 Subject: [PATCH] Add missing foreign import to time_darwin --- core/time/time_darwin.odin | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/time/time_darwin.odin b/core/time/time_darwin.odin index f731776b1..91acd8ae7 100644 --- a/core/time/time_darwin.odin +++ b/core/time/time_darwin.odin @@ -1,5 +1,7 @@ package time +foreign import libc "system:c" + TimeSpec :: struct { tv_sec : i64, /* seconds */ tv_nsec : i64, /* nanoseconds */