From d7a560f9610b56b98fad88767f65dfa2ddef0db5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Fri, 8 Apr 2005 18:54:01 +0200
Subject: [PATCH] Fixed cpp directive.

Rev: src/bignum.h:1.27
---
 src/bignum.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bignum.h b/src/bignum.h
index d31057c404..fce5f9bdd4 100644
--- a/src/bignum.h
+++ b/src/bignum.h
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: bignum.h,v 1.26 2003/11/15 17:25:05 mast Exp $
+|| $Id: bignum.h,v 1.27 2005/04/08 16:54:01 grubba Exp $
 */
 
 #include "global.h"
@@ -14,7 +14,7 @@
 
 #define INT_TYPE_SIGN(x)             ((x) < 0)
 
-#if HAVE_NICE_FPU_DIVISION
+#ifdef HAVE_NICE_FPU_DIVISION
 #define INT_TYPE_MUL_OVERFLOW(a, b)  ((b) && ((a)*(b))/(b) != (a))
 #else
 #define INT_TYPE_MUL_OVERFLOW(a, b)                                        \
-- 
GitLab