wd_syscall.cpp 146 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 // // Created by Fear1ess on 2021/3/31. // #include "wd_syscall.h" #include <errno.h> int wd_set_errno(int n) { errno = n; return -1; }