mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 23:28:48 +00:00
Add missing commas
This commit is contained in:
@@ -8,7 +8,7 @@ tss_dtor_t :: proc "c" (rawptr)
|
|||||||
when ODIN_OS == .Windows {
|
when ODIN_OS == .Windows {
|
||||||
foreign import libc {
|
foreign import libc {
|
||||||
"system:libucrt.lib",
|
"system:libucrt.lib",
|
||||||
"system:msvcprt.lib"
|
"system:msvcprt.lib",
|
||||||
}
|
}
|
||||||
|
|
||||||
thrd_success :: 0 // _Thrd_success
|
thrd_success :: 0 // _Thrd_success
|
||||||
@@ -77,7 +77,7 @@ when ODIN_OS == .Windows {
|
|||||||
when ODIN_OS == .Linux {
|
when ODIN_OS == .Linux {
|
||||||
foreign import libc {
|
foreign import libc {
|
||||||
"system:c",
|
"system:c",
|
||||||
"system:pthread"
|
"system:pthread",
|
||||||
}
|
}
|
||||||
|
|
||||||
thrd_success :: 0
|
thrd_success :: 0
|
||||||
|
|||||||
Reference in New Issue
Block a user