mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-26 03:51:32 +00:00
Remove obsoleted include files (replaced by xxxdefs.h files) and adjust dependencies in makefiles
modified: bin/makefile-darwin.386-x modified: bin/makefile-darwin.x86_64-x modified: bin/makefile-init.386 modified: bin/makefile-sunos5.386-x modified: bin/makefile-tail deleted: inc/car-cdr.h deleted: inc/chardev.h deleted: inc/conspage.h deleted: inc/dir.h deleted: inc/dsk.h deleted: inc/dspsubrs.h deleted: inc/llstk.h deleted: inc/storage.h deleted: inc/ufs.h deleted: inc/uraid.h
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
LispPTR car(register LispPTR datum);
|
||||
LispPTR cdr(register LispPTR datum);
|
||||
LispPTR rplaca(register LispPTR x, register LispPTR y);
|
||||
LispPTR rplacd(LispPTR x, register LispPTR y);
|
||||
LispPTR N_OP_car(register LispPTR tos);
|
||||
LispPTR N_OP_cdr(register LispPTR tos);
|
||||
LispPTR N_OP_rplaca(register LispPTR tosm1, register LispPTR tos);
|
||||
LispPTR N_OP_rplacd(register LispPTR tosm1, register LispPTR tos);
|
||||
ConsCell *find_close_prior_cell(struct conspage *page, LispPTR oldcell); /* XXX why not in conspage? */
|
||||
@@ -1,7 +0,0 @@
|
||||
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);
|
||||
@@ -1,3 +0,0 @@
|
||||
struct conspage *next_conspage(void);
|
||||
LispPTR N_OP_cons(register int cons_car, register int cons_cdr);
|
||||
LispPTR cons(LispPTR cons_car, LispPTR cons_cdr);
|
||||
10
inc/dir.h
10
inc/dir.h
@@ -1,10 +0,0 @@
|
||||
#ifdef DOS
|
||||
int make_old_version(char *old, char *file);
|
||||
#endif
|
||||
#ifdef FSDEBUG
|
||||
void print_finfo(FINFO *fp);
|
||||
#endif
|
||||
int init_finfo();
|
||||
LispPTR COM_gen_files(register LispPTR *args);
|
||||
LispPTR COM_next_file(register LispPTR *args);
|
||||
LispPTR COM_finish_finfo(register LispPTR *args);
|
||||
21
inc/dsk.h
21
inc/dsk.h
@@ -1,21 +0,0 @@
|
||||
#ifdef DOS
|
||||
void separate_host(char *lfname, char *host, char *drive);
|
||||
#else
|
||||
void separate_host(char *lfname, char *host);
|
||||
#endif
|
||||
LispPTR COM_openfile(register LispPTR *args);
|
||||
LispPTR COM_closefile(register LispPTR *args);
|
||||
LispPTR DSK_getfilename(register LispPTR *args);
|
||||
LispPTR DSK_deletefile(register LispPTR *args);
|
||||
LispPTR DSK_renamefile(register LispPTR *args);
|
||||
LispPTR DSK_directorynamep(register LispPTR *args);
|
||||
LispPTR COM_getfileinfo(register LispPTR *args);
|
||||
LispPTR COM_setfileinfo(register LispPTR *args);
|
||||
LispPTR COM_readpage(register LispPTR *args);
|
||||
LispPTR COM_writepage(register LispPTR *args);
|
||||
LispPTR COM_truncatefile(register LispPTR *args);
|
||||
LispPTR COM_changedir(register LispPTR *args);
|
||||
LispPTR COM_getfreeblock(register LispPTR *args);
|
||||
void separate_version(char *name, char *ver, int checkp);
|
||||
int unpack_filename(char *file, char *dir, char *name, char *ver, int checkp);
|
||||
int true_name(register char *path);
|
||||
@@ -1,8 +0,0 @@
|
||||
void DSP_dspbout(LispPTR *args);
|
||||
void DSP_showdisplay(LispPTR *args);
|
||||
LispPTR DSP_VideoColor(LispPTR *args);
|
||||
void DSP_Cursor(LispPTR *args, int argnum);
|
||||
void DSP_SetMousePos(register LispPTR *args);
|
||||
LispPTR DSP_ScreenWidth(LispPTR *args);
|
||||
LispPTR DSP_ScreenHight(LispPTR *args);
|
||||
void flip_cursor();
|
||||
11
inc/llstk.h
11
inc/llstk.h
@@ -1,11 +0,0 @@
|
||||
DLword *freestackblock(DLword n, StackWord *start68k, int align);
|
||||
int do_stackoverflow(int incallp);
|
||||
void decusecount68k(register FX *frame68k);
|
||||
void flip_cursorbar(int n);
|
||||
void blt(register DLword *dest68k, register DLword *source68k, int nw);
|
||||
void stack_check(StackWord *start68k);
|
||||
void walk_stack(StackWord *start68k);
|
||||
void quick_stack_check(void);
|
||||
void check_FX(FX *fx68k);
|
||||
void check_BF(Bframe *bf68k);
|
||||
int check_stack_rooms(FX *fx68k);
|
||||
@@ -1,4 +0,0 @@
|
||||
void checkfor_storagefull(register unsigned int npages);
|
||||
LispPTR dremove(LispPTR x, LispPTR l);
|
||||
LispPTR newpage(LispPTR base);
|
||||
void init_storage(void);
|
||||
13
inc/ufs.h
13
inc/ufs.h
@@ -1,13 +0,0 @@
|
||||
LispPTR UFS_getfilename(LispPTR *args);
|
||||
LispPTR UFS_deletefile(LispPTR *args);
|
||||
LispPTR UFS_renamefile(LispPTR *args);
|
||||
LispPTR UFS_directorynamep(LispPTR *args);
|
||||
#ifdef DOS
|
||||
int unixpathname(char *src, char *dst, int versionp, int genp, char *drive, int *extlenptr, char *rawname);
|
||||
#else
|
||||
int unixpathname(char *src, char *dst, int versionp, int genp);
|
||||
#endif
|
||||
int lisppathname(char *fullname, char *lispname, int dirp, int versionp);
|
||||
int quote_fname(char *file);
|
||||
int quote_fname_ufs(char *file);
|
||||
int quote_dname(char *dir);
|
||||
@@ -1,6 +0,0 @@
|
||||
LispPTR parse_atomstring(char *string);
|
||||
void uraid_commclear();
|
||||
void copy_region(short *src, short *dst, int width, int h);
|
||||
LispPTR uraid_commands();
|
||||
int device_before_raid();
|
||||
int device_after_raid();
|
||||
Reference in New Issue
Block a user