Use _ versions of system-calls

This commit is contained in:
ceriel
1991-02-22 16:57:42 +00:00
parent cf10cabb6f
commit 1118da779b
13 changed files with 43 additions and 44 deletions

View File

@@ -18,8 +18,8 @@
/* function uwrite(fd:integer; var b:buf; n:integer):integer; */
extern int write();
extern int _write();
int uwrite(fd,b,n) char *b; int fd,n; {
return(write(fd,b,n));
return(_write(fd,b,n));
}