| 1 | // Copyright (c) 2019-2024 Alexander Medvednikov. All rights reserved. |
| 2 | // Use of this source code is governed by an MIT license |
| 3 | // that can be found in the LICENSE file. |
| 4 | module os |
| 5 | |
| 6 | pub const sys_write = 4 |
| 7 | pub const sys_open = 5 |
| 8 | pub const sys_close = 6 |
| 9 | pub const sys_mkdir = 136 |
| 10 | pub const sys_creat = 8 |
| 11 | pub const sys_open_nocancel = 398 |
| 12 | pub const sys_stat64 = 338 |
| 13 |