mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 06:38:47 +00:00
Fixed an error in function naming in os_linux
This commit is contained in:
+1
-1
@@ -82,7 +82,7 @@ open_simple :: proc(path: string, mode: int) -> (Handle, Errno) {
|
|||||||
}
|
}
|
||||||
// NOTE(zangent): This is here for compatability reasons. Should this be here?
|
// NOTE(zangent): This is here for compatability reasons. Should this be here?
|
||||||
open :: proc(path: string, mode: int, perm: u32) -> (Handle, Errno) {
|
open :: proc(path: string, mode: int, perm: u32) -> (Handle, Errno) {
|
||||||
return open(path, mode);
|
return open_simple(path, mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
close :: proc(fd: Handle) {
|
close :: proc(fd: Handle) {
|
||||||
|
|||||||
Reference in New Issue
Block a user