From a71cd07b36533ac3e2c68f41ed8347c8ed90e23a Mon Sep 17 00:00:00 2001 From: Lucas Perlind Date: Sun, 7 Apr 2024 09:02:01 +1000 Subject: [PATCH] Update "core:runtime" to "base:runtime" --- core/sync/futex_haiku.odin | 2 +- core/sys/darwin/core_foundation.odin | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sync/futex_haiku.odin b/core/sync/futex_haiku.odin index 1dd719e7a..b81743cad 100644 --- a/core/sync/futex_haiku.odin +++ b/core/sync/futex_haiku.odin @@ -2,7 +2,7 @@ package sync import "core:c" -import "core:runtime" +import "base:runtime" import "core:sys/haiku" import "core:sys/unix" import "core:time" diff --git a/core/sys/darwin/core_foundation.odin b/core/sys/darwin/core_foundation.odin index eafe1a1f3..325122216 100644 --- a/core/sys/darwin/core_foundation.odin +++ b/core/sys/darwin/core_foundation.odin @@ -1,7 +1,7 @@ //+build darwin package darwin -import "core:runtime" +import "base:runtime" foreign import core_foundation "system:CoreFoundation.framework"