diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2020-09-28 12:48:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-28 12:48:50 +0100 |
| commit | 1818ceb4f2b474152fed0cb7e5cfaeaa26e00105 (patch) | |
| tree | 72d1351b496f9fc379779001b5e44e4ffa675756 /core/sys | |
| parent | e95addb1f4f298a7befa2a45dadbce9fcb7a0e00 (diff) | |
| parent | 6b83159b062b72727d887663452fa445382373fc (diff) | |
Merge pull request #747 from Platin21/master
Fixes for MacOS 11 / Big Sur
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/darwin/mach_darwin.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/darwin/mach_darwin.odin b/core/sys/darwin/mach_darwin.odin index 52a145507..25fc63c32 100644 --- a/core/sys/darwin/mach_darwin.odin +++ b/core/sys/darwin/mach_darwin.odin @@ -1,6 +1,6 @@ package darwin; -foreign import "system:pthread" +foreign import pthread "System.framework" import "core:c" |