From 7ed646d0f9f431310e88070499f155082085576d Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Wed, 28 Nov 2007 07:16:16 +0000 Subject: [PATCH] Fix the following Borland build errors by #including sbbs.h before ciolib.h: Error E2176 ..\..\include\mozilla\js\jsotypes.h 73: Too many types in declaration Error E2146 ..\..\include\mozilla\js\jsotypes.h 73: Need an identifier to declare --- src/sbbs3/jsexec.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/sbbs3/jsexec.c b/src/sbbs3/jsexec.c index 5ba1e96b1f..87f23451fa 100644 --- a/src/sbbs3/jsexec.c +++ b/src/sbbs3/jsexec.c @@ -43,9 +43,8 @@ #include <signal.h> #endif -#include "ciolib.h" - #include "sbbs.h" +#include "ciolib.h" #define DEFAULT_LOG_LEVEL LOG_DEBUG /* Display all LOG levels */ #define DEFAULT_ERR_LOG_LVL LOG_WARNING -- GitLab