diff options
| author | Lucas Perlind <perlindluca@gmail.com> | 2024-04-07 09:02:01 +1000 |
|---|---|---|
| committer | Lucas Perlind <perlindluca@gmail.com> | 2024-04-07 09:02:01 +1000 |
| commit | a71cd07b36533ac3e2c68f41ed8347c8ed90e23a (patch) | |
| tree | 76b79ae501058a99d79f4075d8772619163de285 | |
| parent | 2bb20a2c1c4aeeef2ebbfe33982c1cb38dbc294f (diff) | |
Update "core:runtime" to "base:runtime"
| -rw-r--r-- | core/sync/futex_haiku.odin | 2 | ||||
| -rw-r--r-- | 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" |