1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-29 16:30:19 +02:00

Use #ifdef HAVE_...', not #if'.

* test-suite/standalone/test-round.c (test_scm_c_round): Use `#ifdef
  HAVE_FESETROUND', not `#if'.
This commit is contained in:
Ludovic Courtès 2011-02-02 15:13:07 +01:00
parent 2d5ef30918
commit d6cf96974e

View file

@ -1,4 +1,4 @@
/* Copyright (C) 2004, 2006, 2008, 2009 Free Software Foundation, Inc. /* Copyright (C) 2004, 2006, 2008, 2009, 2011 Free Software Foundation, Inc.
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License * modify it under the terms of the GNU Lesser General Public License
@ -71,7 +71,7 @@ test_scm_c_round ()
table. */ table. */
if (i != 0) if (i != 0)
{ {
#if HAVE_FESETROUND #ifdef HAVE_FESETROUND
fesetround (modes[i]); fesetround (modes[i]);
#endif #endif
} }