mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
12 lines
363 B
V
12 lines
363 B
V
// Copyright (c) 2019-2024 Alexander Medvednikov. All rights reserved.
|
|
// Use of this source code is governed by an MIT license
|
|
// that can be found in the LICENSE file.
|
|
module os
|
|
|
|
pub const sys_write = 4
|
|
pub const sys_open = 5
|
|
pub const sys_close = 6
|
|
pub const sys_mkdir = 136
|
|
pub const sys_creat = 8
|
|
pub const sys_open_nocancel = 398
|
|
pub const sys_stat64 = 338
|