v2 / vlib / os / os_darwin.c.v
12 lines · 11 sloc · 363 bytes · 4dcf79e388ceeb0baede3757d1f0b8e7e502d2e7
Raw
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.
4module os
5
6pub const sys_write = 4
7pub const sys_open = 5
8pub const sys_close = 6
9pub const sys_mkdir = 136
10pub const sys_creat = 8
11pub const sys_open_nocancel = 398
12pub const sys_stat64 = 338
13