mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 09:54:45 +00:00
21 lines
321 B
Odin
21 lines
321 B
Odin
#+build !darwin
|
|
#+build !linux
|
|
#+build !freebsd
|
|
#+build !windows
|
|
package net
|
|
|
|
@(private="file", thread_local)
|
|
_last_error: i32
|
|
|
|
_last_platform_error :: proc() -> i32 {
|
|
return _last_error
|
|
}
|
|
|
|
_last_platform_error_string :: proc() -> string {
|
|
return ""
|
|
}
|
|
|
|
_set_last_platform_error :: proc(err: i32) {
|
|
_last_error = err
|
|
}
|