1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

* init.c: Don't forget to #include smob.h and init.h.

* Makefile.in: Dependencies updated.
This commit is contained in:
Jim Blandy 1996-09-10 02:45:29 +00:00
parent de15ba3ad6
commit a8be22fe50
2 changed files with 9 additions and 4 deletions

View file

@ -615,7 +615,7 @@ hashtab.o: hashtab.c _scm.h __scm.h scmconfig.h \
hashtab.h hashtab.x
inet_aton.o: inet_aton.c
init.o: init.c _scm.h __scm.h scmconfig.h \
tags.h error.h pairs.h __scm.h list.h gc.h \
tags.h error.h __scm.h pairs.h list.h gc.h \
marksweep.h gsubr.h procs.h numbers.h symbols.h boolean.h \
strings.h vectors.h root.h ports.h async.h alist.h append.h \
arbiters.h chars.h continuations.h debug.h options.h \
@ -623,9 +623,11 @@ init.o: init.c _scm.h __scm.h scmconfig.h \
ports.h gdbint.h hash.h hashtab.h ioext.h kw.h load.h \
mallocs.h mbstrings.h symbols.h objprop.h options.h \
posix.h print.h procprop.h ramap.h read.h scmsigs.h sequences.h \
simpos.h socket.h srcprop.h stackchk.h continuations.h \
debug.h stime.h strop.h strorder.h strports.h struct.h \
tag.h throw.h unif.h variable.h version.h vports.h weaks.h
simpos.h smob.h params.h genio.h \
print.h markers.h socket.h srcprop.h \
stackchk.h continuations.h debug.h stime.h \
strop.h strorder.h strports.h struct.h tag.h throw.h unif.h \
variable.h version.h vports.h weaks.h init.h
ioext.o: ioext.c fd.h _scm.h __scm.h scmconfig.h \
tags.h error.h pairs.h __scm.h list.h gc.h \
marksweep.h gsubr.h procs.h numbers.h symbols.h boolean.h \

View file

@ -88,6 +88,7 @@
#include "scmsigs.h"
#include "sequences.h"
#include "simpos.h"
#include "smob.h"
#include "socket.h"
#include "srcprop.h"
#include "stackchk.h"
@ -107,6 +108,8 @@
#include "vports.h"
#include "weaks.h"
#include "init.h"
#ifdef HAVE_STRING_H
#include <string.h>
#endif