Initial revision

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

13
lang/pc/libpc/get.c Normal file
View File

@@ -0,0 +1,13 @@
#include <pc_file.h>
#include <pc_err.h>
extern _rf();
extern _trp();
_get(f) struct file *f; {
_rf(f);
if (f->flags&EOFBIT)
_trp(EEOF);
f->flags &= ~WINDOW;
}