unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* trunc #define
@ 2004-05-16 21:57 Kevin Ryde
  0 siblings, 0 replies; only message in thread
From: Kevin Ryde @ 2004-05-16 21:57 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 198 bytes --]

        * numbers.c (trunc): Remove #define to scm_truncate when the C library
        doesn't provide trunc.  This was for when `truncate' was done as a
        scm_tc7_dsubr, no longer required.


[-- Attachment #2: numbers.c.define-trunc.diff --]
[-- Type: text/plain, Size: 265 bytes --]

--- numbers.c.~1.243.~	2004-05-12 07:19:25.000000000 +1000
+++ numbers.c	2004-05-16 18:09:26.000000000 +1000
@@ -4937,7 +4937,6 @@
 #if HAVE_TRUNC
   return trunc (x);
 #else
-#define trunc scm_truncate
   if (x < 0.0)
     return -floor (-x);
   return floor (x);

[-- Attachment #3: Type: text/plain, Size: 142 bytes --]

_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-05-16 21:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-05-16 21:57 trunc #define Kevin Ryde

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).