Changed foreign imports to now use the System Framework

This commit is contained in:
Platin21
2020-09-27 21:57:27 +03:00
parent 840af6825a
commit a71cbd4087
2 changed files with 3 additions and 3 deletions

View File

@@ -1,8 +1,8 @@
package os
foreign import dl "system:dl"
foreign import libc "system:c"
foreign import pthread "system:pthread"
foreign import libc "System.framework"
foreign import pthread "System.framework"
import "core:runtime"
import "core:strings"

View File

@@ -1,6 +1,6 @@
package darwin;
foreign import "system:pthread"
foreign import pthread "System.framework"
import "core:c"