Initial revision

This commit is contained in:
ceriel
1988-04-19 09:34:37 +00:00
parent 5140441585
commit a61b1a19bb
113 changed files with 2057 additions and 0 deletions

11
mach/minix/libsys/read.c Normal file
View File

@@ -0,0 +1,11 @@
#include "lib.h"
PUBLIC int read(fd, buffer, nbytes)
int fd;
char *buffer;
int nbytes;
{
int n;
n = callm1(FS, READ, fd, nbytes, 0, buffer, NIL_PTR, NIL_PTR);
return(n);
}