Move core:runtime to base:runtime; keep alias around

This commit is contained in:
gingerBill
2024-01-28 21:05:53 +00:00
parent ddcaa0de53
commit 09fa1c29cd
42 changed files with 54 additions and 7 deletions
+7
View File
@@ -0,0 +1,7 @@
package runtime
_OS_Errno :: distinct int
os_write :: proc "contextless" (data: []byte) -> (int, _OS_Errno) {
return _os_write(data)
}