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

write.c « ms1 « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88b5ff83d8cc03af7efcd1ce06c921f8918535c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "trap.h"


int
write ( int file,
	 char *ptr,
	 size_t len)
{
  return TRAP0 (SYS_write, file, ptr, len);
}