You need to sign in or sign up before continuing.
wd_syscall.cpp 146 Bytes
//
// Created by Fear1ess on 2021/3/31.
//
#include "wd_syscall.h"
#include <errno.h>

int wd_set_errno(int n) {
    errno = n;
    return -1;
}