diff options
| author | gingerBill <bill@gingerbill.org> | 2022-06-13 11:12:31 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-06-13 11:12:31 +0100 |
| commit | d7195b07986a90456d3451485ef1d3066b4e2fde (patch) | |
| tree | 8f3f1acb07de14780d1e28e74ee153644383dcf8 | |
| parent | b40998de9e74588a498fecaa4a2ac903da411f7e (diff) | |
Add missing commas
| -rw-r--r-- | core/c/libc/threads.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/c/libc/threads.odin b/core/c/libc/threads.odin index a7a45150d..f6aae2e98 100644 --- a/core/c/libc/threads.odin +++ b/core/c/libc/threads.odin @@ -8,7 +8,7 @@ tss_dtor_t :: proc "c" (rawptr) when ODIN_OS == .Windows { foreign import libc { "system:libucrt.lib", - "system:msvcprt.lib" + "system:msvcprt.lib", } thrd_success :: 0 // _Thrd_success @@ -77,7 +77,7 @@ when ODIN_OS == .Windows { when ODIN_OS == .Linux { foreign import libc { "system:c", - "system:pthread" + "system:pthread", } thrd_success :: 0 |