mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
removed do
This commit is contained in:
Vendored
+3
-3
@@ -2,8 +2,8 @@ package zlib
|
|||||||
|
|
||||||
import "core:c"
|
import "core:c"
|
||||||
|
|
||||||
when ODIN_OS == .Windows do foreign import zlib "libz.lib"
|
when ODIN_OS == .Windows { foreign import zlib "libz.lib" }
|
||||||
when ODIN_OS == .Linux do foreign import zlib "system:z"
|
when ODIN_OS == .Linux { foreign import zlib "system:z" }
|
||||||
|
|
||||||
VERSION :: "1.2.12"
|
VERSION :: "1.2.12"
|
||||||
VERNUM :: 0x12c0
|
VERNUM :: 0x12c0
|
||||||
@@ -259,4 +259,4 @@ gzgetc :: #force_inline proc(file: gzFile) -> c.int {
|
|||||||
return ch
|
return ch
|
||||||
}
|
}
|
||||||
return gzgetc_unique(file)
|
return gzgetc_unique(file)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user