1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

os: implement cp for nix

This commit is contained in:
Naheel
2020-06-01 22:11:40 +03:00
committed by GitHub
parent a24bf80228
commit 4fcabb71c4
4 changed files with 31 additions and 9 deletions

View File

@ -411,3 +411,6 @@ fn C.pthread_mutex_init(voidptr, voidptr) int
fn C.pthread_mutex_lock(voidptr) int
fn C.pthread_mutex_unlock(voidptr) int
fn C.read(fd int, buf voidptr, count size_t) int
fn C.write(fd int, buf voidptr, count size_t) int
fn C.close(fd int) int