mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-17 00:22:59 +00:00
... start by fixing the include files and the fallout in C source from removing includes not directly needed by headers that previously included them.
15 lines
365 B
C
15 lines
365 B
C
#ifndef DIRDEFS_H
|
|
#define DIRDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
#ifdef DOS
|
|
int make_old_version(char *old, char *file);
|
|
#endif
|
|
#ifdef FSDEBUG
|
|
void print_finfo(FINFO *fp);
|
|
#endif
|
|
int init_finfo(void);
|
|
LispPTR COM_gen_files(register LispPTR *args);
|
|
LispPTR COM_next_file(register LispPTR *args);
|
|
LispPTR COM_finish_finfo(register LispPTR *args);
|
|
#endif
|