New installation mechanism, updated to 1.5

This commit is contained in:
ceriel
1991-09-03 14:22:32 +00:00
parent 7512bdd33b
commit c55a542ba4
126 changed files with 1923 additions and 280 deletions

View File

@@ -0,0 +1,10 @@
#include <lib.h>
#define write _write
PUBLIC int write(fd, buffer, nbytes)
int fd;
char *buffer;
unsigned nbytes;
{
return(_callm1(FS, WRITE, fd, nbytes, 0, buffer, NIL_PTR, NIL_PTR));
}