Skip to content

Commit cb52713

Browse files
committed
Move sys-state.h to be included by sys-core.h
1 parent 259c0cc commit cb52713

File tree

6 files changed

+1
-6
lines changed

6 files changed

+1
-6
lines changed

src/core/a-lib.c

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
#include "reb-dialect.h"
3232
#include "reb-ext.h"
3333
#include "reb-evtypes.h"
34-
#include "sys-state.h"
3534

3635
// Linkage back to HOST functions. Needed when we compile as a DLL
3736
// in order to use the OS_* macro functions.

src/core/b-init.c

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
***********************************************************************/
2929

3030
#include "sys-core.h"
31-
#include "sys-state.h"
3231

3332
#define EVAL_DOSE 10000
3433

src/core/c-do.c

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333

3434
#include "sys-core.h"
3535
#include <stdio.h>
36-
#include "sys-state.h"
3736

3837
enum Eval_Types {
3938
ET_INVALID, // not valid to evaluate

src/core/c-error.c

-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@
9696

9797
#include "sys-core.h"
9898

99-
#include "sys-state.h"
100-
10199
// Globals or Threaded???
102100
static REBOL_STATE Top_State; // Boot var: holds error state during boot
103101

src/core/u-parse.c

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
***********************************************************************/
2929

3030
#include "sys-core.h"
31-
#include "sys-state.h"
3231

3332
// Parser flags:
3433
enum Parse_Flags {

src/include/sys-core.h

+1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ typedef struct rebol_mold {
142142
#include "tmp-errnums.h"
143143
#include "host-lib.h"
144144
#include "sys-stack.h"
145+
#include "sys-state.h"
145146

146147
/***********************************************************************
147148
**

0 commit comments

Comments
 (0)