diff options
author | Tor Andersson <tor@ghostscript.com> | 2005-01-11 18:47:38 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2005-01-11 18:47:38 +0100 |
commit | f2105f20cbd9ca7e8ebed81e165b296230d997f1 (patch) | |
tree | 55d4308ada414abdb86ebcfa46ed77dab259db62 /base/cpudep.c | |
parent | 4a6def1aebcb61599f9d975e92079aad5bb423c6 (diff) | |
download | mupdf-f2105f20cbd9ca7e8ebed81e165b296230d997f1.tar.xz |
fix jamfile & co for win32
Diffstat (limited to 'base/cpudep.c')
-rw-r--r-- | base/cpudep.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/base/cpudep.c b/base/cpudep.c index ec19fe92..616a3563 100644 --- a/base/cpudep.c +++ b/base/cpudep.c @@ -7,7 +7,8 @@ Glenn Kennard <d98gk@efd.lth.se> #include <fitz.h> -#include <setjmp.h> +#include <signal.h> /* signal/sigaction */ +#include <setjmp.h> /* sigsetjmp/siglongjmp */ #ifdef WIN32 #define sigjmp_buf jmp_buf @@ -95,9 +96,6 @@ static const featuretest features[1] = { }; #endif -#include <signal.h> /* signal/sigaction */ -#include <setjmp.h> /* sigsetjmp/siglongjmp */ - /* global run-time constant */ unsigned fz_cpuflags = 0; |