mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-19 07:46:24 -05:00
remove fileio from efunc, update dependencies.
This commit is contained in:
parent
a65f7ca38c
commit
fa56e5dfff
6
Makefile
6
Makefile
@ -132,13 +132,13 @@ depend: ${SRC}
|
||||
|
||||
ansi.o: ansi.c estruct.h edef.h
|
||||
basic.o: basic.c estruct.h edef.h
|
||||
bind.o: bind.c estruct.h edef.h
|
||||
bind.o: bind.c estruct.h edef.h fileio.h
|
||||
buffer.o: buffer.c estruct.h edef.h
|
||||
crypt.o: crypt.c estruct.h edef.h
|
||||
display.o: display.c estruct.h edef.h utf8.h version.h
|
||||
eval.o: eval.c estruct.h edef.h version.h
|
||||
eval.o: eval.c estruct.h edef.h version.h fileio.h
|
||||
exec.o: exec.c estruct.h edef.h
|
||||
file.o: file.c estruct.h edef.h
|
||||
file.o: file.c estruct.h edef.h fileio.h
|
||||
fileio.o: fileio.c fileio.h estruct.h edef.h
|
||||
ibmpc.o: ibmpc.c estruct.h edef.h
|
||||
input.o: input.c estruct.h edef.h
|
||||
|
1
bind.c
1
bind.c
@ -12,6 +12,7 @@
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "fileio.h"
|
||||
#include "line.h"
|
||||
|
||||
|
||||
|
3
efunc.h
3
efunc.h
@ -220,9 +220,6 @@ extern int writeout(char *fn);
|
||||
extern int filename(int f, int n);
|
||||
extern int ifile(char *fname);
|
||||
|
||||
/* fileio.c */
|
||||
#include "fileio.h"
|
||||
|
||||
/* exec.c */
|
||||
extern int namedcmd(int f, int n);
|
||||
extern int execcmd(int f, int n);
|
||||
|
1
eval.c
1
eval.c
@ -11,6 +11,7 @@
|
||||
#include "estruct.h"
|
||||
#include "edef.h"
|
||||
#include "efunc.h"
|
||||
#include "fileio.h"
|
||||
#include "line.h"
|
||||
#include "version.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user