blob: 3ecf4a8cfd1148583d6c8ee9b251ce790a34e594 (
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);
}
|