Add system:legacy_stdio_definitions.lib to .odin for Windows

This commit is contained in:
gingerBill
2022-10-02 11:58:17 +01:00
parent 4c2e86b063
commit 35ee7f3cba

View File

@@ -1,7 +1,10 @@
package libc
when ODIN_OS == .Windows {
foreign import libc "system:libucrt.lib"
foreign import libc {
"system:libucrt.lib",
"system:legacy_stdio_definitions.lib",
}
} else when ODIN_OS == .Darwin {
foreign import libc "system:System.framework"
} else {