v / vlib / os
Raw file | 14 loc (13 sloc) | 362 bytes | Latest commit hash 59ed4be49
1// Copyright (c) 2019-2023 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.
4module os
5
6pub const (
7 sys_write = 4
8 sys_open = 5
9 sys_close = 6
10 sys_mkdir = 136
11 sys_creat = 8
12 sys_open_nocancel = 398
13 sys_stat64 = 338
14)