diff options
author | Ludovic Courtès <ludo@gnu.org> | 2011-02-02 15:13:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-02-02 18:06:28 +0100 |
commit | d6cf96974ea21b2f0deb1908baefb3dd2b704331 (patch) | |
tree | 885aff3cd9975675672eff899c7a9ce3b3184dbb | |
parent | 2d5ef30918df6534d84cf6c93d8a640fd0d5387d (diff) | |
download | guile-d6cf96974ea21b2f0deb1908baefb3dd2b704331.tar.gz |
Use `#ifdef HAVE_...', not `#if'.
* test-suite/standalone/test-round.c (test_scm_c_round): Use `#ifdef
HAVE_FESETROUND', not `#if'.
-rw-r--r-- | test-suite/standalone/test-round.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/standalone/test-round.c b/test-suite/standalone/test-round.c index 862e7d0fd..f1458af29 100644 --- a/test-suite/standalone/test-round.c +++ b/test-suite/standalone/test-round.c @@ -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 * modify it under the terms of the GNU Lesser General Public License @@ -71,7 +71,7 @@ test_scm_c_round () table. */ if (i != 0) { -#if HAVE_FESETROUND +#ifdef HAVE_FESETROUND fesetround (modes[i]); #endif } |