1570af302Sopenharmony_ci#include "pthread_impl.h" 2570af302Sopenharmony_ci#include "syscall.h" 3570af302Sopenharmony_ci 4570af302Sopenharmony_cihidden long __syscall_cp_c(); 5570af302Sopenharmony_ci 6570af302Sopenharmony_cistatic long sccp(syscall_arg_t nr, 7570af302Sopenharmony_ci syscall_arg_t u, syscall_arg_t v, syscall_arg_t w, 8570af302Sopenharmony_ci syscall_arg_t x, syscall_arg_t y, syscall_arg_t z) 9570af302Sopenharmony_ci{ 10570af302Sopenharmony_ci return __syscall(nr, u, v, w, x, y, z); 11570af302Sopenharmony_ci} 12570af302Sopenharmony_ci 13570af302Sopenharmony_ciweak_alias(sccp, __syscall_cp_c); 14570af302Sopenharmony_ci 15570af302Sopenharmony_cilong (__syscall_cp)(syscall_arg_t nr, 16570af302Sopenharmony_ci syscall_arg_t u, syscall_arg_t v, syscall_arg_t w, 17570af302Sopenharmony_ci syscall_arg_t x, syscall_arg_t y, syscall_arg_t z) 18570af302Sopenharmony_ci{ 19570af302Sopenharmony_ci return __syscall_cp_c(nr, u, v, w, x, y, z); 20570af302Sopenharmony_ci} 21