1570af302Sopenharmony_ci#include <unistd.h> 2570af302Sopenharmony_ci#include "syscall.h" 3570af302Sopenharmony_ci 4570af302Sopenharmony_cissize_t write(int fd, const void *buf, size_t count) 5570af302Sopenharmony_ci{ 6570af302Sopenharmony_ci return syscall_cp(SYS_write, fd, buf, count); 7570af302Sopenharmony_ci} 8