]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/libc-extension.cc
($(outdir)/%.pdf): add DVIPS_FLAGS. This will
[lilypond.git] / flower / libc-extension.cc
index 35484e3b570c8d1248d8d7a9bf5e125eb93c9332..e072826d302f3bfdce97239e5629c02d95337bbc 100644 (file)
@@ -4,7 +4,7 @@
 
   source file of the flowerlib
 
-  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
          Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
@@ -43,10 +43,10 @@ strnupr (char* start, int n)
 double
 my_round (double x)
 {
-  return  floor (x -0.5)+ 1.0 ;
+  return floor (x -0.5)+ 1.0 ;
 }
 
-
+#ifndef isinf
 #if !HAVE_ISINF
 int
 isinf (double x)
@@ -54,7 +54,7 @@ isinf (double x)
   return x && ( x == x/ 2) ;
 }
 #endif
-
+#endif
 
 #if !HAVE_MEMMEM