Initial revision

This commit is contained in:
sater
1984-07-20 10:44:57 +00:00
parent 1a0102783f
commit f54556ac0f
73 changed files with 3041 additions and 0 deletions

7
lang/pc/libpc/uwrite.c Normal file
View File

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