Skip to content
Snippets Groups Projects
Commit d7a560f9 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Fixed cpp directive.

Rev: src/bignum.h:1.27
parent ca8301b6
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
|| This file is part of Pike. For copyright information see COPYRIGHT. || This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information. || 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" #include "global.h"
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#define INT_TYPE_SIGN(x) ((x) < 0) #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)) #define INT_TYPE_MUL_OVERFLOW(a, b) ((b) && ((a)*(b))/(b) != (a))
#else #else
#define INT_TYPE_MUL_OVERFLOW(a, b) \ #define INT_TYPE_MUL_OVERFLOW(a, b) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment