Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sys_write.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce2edd36a87e8bcc878ecf277eed8404b1b90e6e (plain)
1
2
3
4
5
6
7
8
9
10
#include <machine/syscall.h>
#include <sys/types.h>
#include "internal_syscall.h"

/* Write to a file.  */
ssize_t
_write(int file, const void *ptr, size_t len)
{
  return syscall_errno (SYS_write, 3, file, ptr, len, 0, 0, 0);
}