From 1cf7e78ae5c8fe47e586219e619a737290c2d029 Mon Sep 17 00:00:00 2001 From: Torsten Dreyer Date: Sun, 17 Jul 2011 22:15:57 +0200 Subject: [PATCH] Fix compile for 32bit (handleFPE() undeclared) --- src/Main/bootstrap.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Main/bootstrap.cxx b/src/Main/bootstrap.cxx index a4ba24bd0..c29440dba 100644 --- a/src/Main/bootstrap.cxx +++ b/src/Main/bootstrap.cxx @@ -93,6 +93,7 @@ static void handleFPE(int) } #elif defined(__linux__) && defined(__i386__) +static void handleFPE(int); static void initFPE () { -- 2.39.5