repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes compile failure if REENTRANT_SYSCALLS_PROVIDED and MISSING_SYSCALL_NAMES defined
[newlib-cygwin.git]
/
libgloss
/
mn10300
/
read.c
blob
2f1878c062b984e61b56800f472da75a350b5aff
1
#include <_ansi.h>
2
#include <sys/types.h>
3
#include <sys/stat.h>
4
#include
"trap.h"
5
6
7
int
8
_read
(
int
file
,
9
char
*
ptr
,
10
size_t
len
)
11
{
12
return
TRAP0
(
SYS_read
,
file
,
ptr
,
len
);
13
}