ack/mach/minix/libsys/_read.c

12 lines
206 B
C
Raw Normal View History

#include <lib.h>
#define read _read
1991-09-19 12:46:16 +00:00
#include <unistd.h>
PUBLIC int read(fd, buffer, nbytes)
int fd;
char *buffer;
unsigned nbytes;
{
return(_callm1(FS, READ, fd, nbytes, 0, buffer, NIL_PTR, NIL_PTR));
}