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

Only include vectors.h in those files, where it is actually needed.

This commit is contained in:
Dirk Herrmann 2000-03-17 15:23:03 +00:00
parent 0fa27efa4a
commit 003d1fd046
30 changed files with 38 additions and 1 deletions

View file

@ -1,3 +1,13 @@
2000-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
* _scm.h: Don't include vectors.h everywhere...
* eq.c eval.c filesys.c gc.c gsubr.c guardians.c hash.c hashtab.c
keywords.c net_db.c numbers.c objects.c posix.c print.c procprop.c
procs.c ramap.c random.c read.c scmsigs.c socket.c sort.c stime.c
strports.c symbols.c unif.c vports.c weaks.c: ... only include it
here.
2000-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
* genio.h: removed. (Only content was '/* delete me */'.)

View file

@ -71,7 +71,6 @@
#include "symbols.h" /* For length, chars, values, miscellany. */
#include "boolean.h" /* Everyone wonders about the truth. */
#include "strings.h" /* Everyone loves string. */
#include "vectors.h" /* Vectors are used for structures a lot. */
#include "root.h" /* Everyone uses these objects. */
#include "ports.h" /* Everyone does I/O. */
#include "async.h" /* Everyone allows/disallows ints. */

View file

@ -50,6 +50,7 @@
#include "strorder.h"
#include "smob.h"
#include "unif.h"
#include "vectors.h"
#include "validate.h"
#include "eq.h"

View file

@ -95,6 +95,7 @@ char *alloca ();
#include "objects.h"
#include "feature.h"
#include "modules.h"
#include "vectors.h"
#include "validate.h"
#include "eval.h"

View file

@ -49,6 +49,7 @@
#include "feature.h"
#include "fports.h"
#include "iselect.h"
#include "vectors.h"
#include "validate.h"
#include "filesys.h"

View file

@ -53,6 +53,7 @@
#include "smob.h"
#include "unif.h"
#include "async.h"
#include "vectors.h"
#include "validate.h"
#include "gc.h"

View file

@ -47,6 +47,7 @@
#include <stdio.h>
#include "_scm.h"
#include "procprop.h"
#include "vectors.h"
#include "gsubr.h"

View file

@ -60,6 +60,7 @@
#include "_scm.h"
#include "print.h"
#include "smob.h"
#include "vectors.h"
#include "validate.h"
#include "guardians.h"

View file

@ -47,6 +47,7 @@
#include <stdio.h>
#include "_scm.h"
#include "chars.h"
#include "vectors.h"
#include "validate.h"
#include "hash.h"

View file

@ -49,6 +49,7 @@
#include "alist.h"
#include "hash.h"
#include "eval.h"
#include "vectors.h"
#include "validate.h"
#include "hashtab.h"

View file

@ -47,6 +47,7 @@
#include <stdio.h>
#include "_scm.h"
#include "smob.h"
#include "vectors.h"
#include "validate.h"
#include "keywords.h"

View file

@ -54,6 +54,7 @@
#include <stdio.h>
#include "_scm.h"
#include "feature.h"
#include "vectors.h"
#include "validate.h"
#include "net_db.h"

View file

@ -50,6 +50,7 @@
#include "unif.h"
#include "feature.h"
#include "smob.h"
#include "vectors.h"
#include "validate.h"
#include "numbers.h"

View file

@ -58,6 +58,7 @@
#include "smob.h"
#include "eval.h"
#include "alist.h"
#include "vectors.h"
#include "validate.h"
#include "objects.h"

View file

@ -49,6 +49,7 @@
#include "fports.h"
#include "scmsigs.h"
#include "feature.h"
#include "vectors.h"
#include "validate.h"
#include "posix.h"

View file

@ -58,6 +58,7 @@
#include "struct.h"
#include "objects.h"
#include "strports.h"
#include "vectors.h"
#include "validate.h"
#include "print.h"

View file

@ -52,6 +52,7 @@
#include "procs.h"
#include "gsubr.h"
#include "objects.h"
#include "vectors.h"
#include "validate.h"
#include "procprop.h"

View file

@ -48,6 +48,7 @@
#include "_scm.h"
#include "objects.h"
#include "vectors.h"
#include "validate.h"
#include "procs.h"

View file

@ -59,6 +59,7 @@
#include "eq.h"
#include "eval.h"
#include "feature.h"
#include "vectors.h"
#include "validate.h"
#include "ramap.h"

View file

@ -51,6 +51,7 @@
#include "smob.h"
#include "numbers.h"
#include "feature.h"
#include "vectors.h"
#include "validate.h"
#include "random.h"

View file

@ -54,6 +54,7 @@
#include "srcprop.h"
#include "hashtab.h"
#include "hash.h"
#include "vectors.h"
#include "validate.h"
#include "read.h"

View file

@ -50,6 +50,7 @@
#include "async.h"
#include "eval.h"
#include "vectors.h"
#include "validate.h"
#include "scmsigs.h"

View file

@ -50,6 +50,7 @@
#include "unif.h"
#include "feature.h"
#include "fports.h"
#include "vectors.h"
#include "validate.h"
#include "socket.h"

View file

@ -85,6 +85,7 @@ char *alloca ();
#include "ramap.h"
#include "alist.h"
#include "feature.h"
#include "vectors.h"
#include "validate.h"
#include "sort.h"

View file

@ -47,6 +47,7 @@
#include <stdio.h>
#include "_scm.h"
#include "feature.h"
#include "vectors.h"
#include "validate.h"
#include "stime.h"

View file

@ -54,6 +54,7 @@
#include "unif.h"
#include "eval.h"
#include "read.h"
#include "vectors.h"
#include "strports.h"

View file

@ -50,6 +50,7 @@
#include "eval.h"
#include "variable.h"
#include "alist.h"
#include "vectors.h"
#include "weaks.h"
#include "validate.h"

View file

@ -59,6 +59,7 @@
#include "smob.h"
#include "strop.h"
#include "feature.h"
#include "vectors.h"
#include "validate.h"
#include "unif.h"

View file

@ -49,6 +49,7 @@
#include "eval.h"
#include "chars.h"
#include "fports.h"
#include "vectors.h"
#include "validate.h"
#include "vports.h"

View file

@ -45,6 +45,7 @@
#include <stdio.h>
#include "_scm.h"
#include "vectors.h"
#include "validate.h"
#include "weaks.h"