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
Cygwin: setpriority, sched_setparam: add missing process access right
[newlib-cygwin.git]
/
libgloss
/
m32r
/
read.c
blob
0e32b746db121311e1a574aa53d32c655c17ad77
1
#include <sys/types.h>
2
#include <sys/stat.h>
3
#include
"syscall.h"
4
#include
"eit.h"
5
6
int
7
_read
(
int
file
,
char
*
ptr
,
int
len
)
8
{
9
return
TRAP0
(
SYS_read
,
file
,
ptr
,
len
);
10
}