mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 14:18:47 +00:00
Change precedence order for types e.g. ^T(x) == ^(T(x))
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ import_load (
|
||||
)
|
||||
|
||||
write_string :: proc(fd: Handle, str: string) -> (int, Errno) {
|
||||
return write(fd, []u8(str));
|
||||
return write(fd, cast([]u8)str);
|
||||
}
|
||||
|
||||
read_entire_file :: proc(name: string) -> ([]u8, bool) {
|
||||
|
||||
Reference in New Issue
Block a user