1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-18 09:02:39 +00:00

Fixups for functions defined by chardev.c in chardev.h. Update subr.c

This commit is contained in:
Nick Briggs 2017-06-30 20:23:46 -07:00
parent 5d8c90cf18
commit 3517321b20
3 changed files with 9 additions and 0 deletions

7
inc/chardev.h Normal file
View File

@ -0,0 +1,7 @@
LispPTR CHAR_openfile(LispPTR *args);
LispPTR CHAR_closefile(LispPTR *args);
LispPTR CHAR_ioctl(LispPTR *args);
LispPTR CHAR_bin(int id, LispPTR errn);
LispPTR CHAR_bout(int id, LispPTR ch, LispPTR errn);
LispPTR CHAR_bins(LispPTR *args);
LispPTR CHAR_bouts(LispPTR *args);

View File

@ -61,6 +61,7 @@ static char *id = "$Id: chardev.c,v 1.2 1999/01/03 02:06:50 sybalsky Exp $ Copyr
#include "locfile.h"
#include "osmsg.h"
#include "dbprint.h"
#include "chardev.h"
#if defined(ISC) || defined(FREEBSD)
#include <dirent.h>

View File

@ -50,6 +50,7 @@ static char *id = "$Id: subr.c,v 1.3 1999/05/31 23:35:42 sybalsky Exp $ Copyrigh
#include "dsk.h"
#include "ufs.h"
#include "dir.h"
#include "chardev.h"
extern LispPTR *PENDINGINTERRUPT68k;