1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-20 02:30:23 +02:00

Only include async.h where it is actually needed.

This commit is contained in:
Dirk Herrmann 2000-03-18 09:16:48 +00:00
parent ba11fd4cb6
commit 28b3236d36
5 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2000-03-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
* _scm.h: Don't include async.h everywhere...
* eq.c eval.c iselect.c: ... only include it here.
2000-03-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
* _scm.h: Don't include root.h everywhere...

View file

@ -70,7 +70,6 @@
#include "numbers.h" /* Everyone deals with fixnums. */
#include "symbols.h" /* For length, chars, values, miscellany. */
#include "boolean.h" /* Everyone wonders about the truth. */
#include "async.h" /* Everyone allows/disallows ints. */
#ifdef USE_THREADS
#include "threads.h" /* The cooperative thread package does
switching at async ticks. */

View file

@ -48,6 +48,7 @@
#include "ramap.h"
#include "stackchk.h"
#include "strorder.h"
#include "async.h"
#include "root.h"
#include "smob.h"
#include "unif.h"

View file

@ -93,6 +93,7 @@ char *alloca ();
#include "srcprop.h"
#include "stackchk.h"
#include "objects.h"
#include "async.h"
#include "feature.h"
#include "modules.h"
#include "ports.h"

View file

@ -44,6 +44,7 @@
#include <string.h>
#include "_scm.h"
#include "async.h"
#include "iselect.h"