From: Karl Heuer Date: Tue, 1 Feb 1994 23:21:22 +0000 (+0000) Subject: (Fmod): Use HAVE_FMOD. X-Git-Tag: emacs-19.34~10122 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d9f082eccae83275db39962ea7bbe958510fcb08;p=emacs.git (Fmod): Use HAVE_FMOD. --- diff --git a/src/data.c b/src/data.c index 4d25ed3cf5e..c325a38a0b2 100644 --- a/src/data.c +++ b/src/data.c @@ -1801,7 +1801,7 @@ Both X and Y must be numbers or markers.") if (f2 == 0) Fsignal (Qarith_error, Qnil); -#if defined (USG) || defined (sun) || defined (ultrix) || defined (hpux) || defined (MSDOS) +#ifdef HAVE_FMOD f1 = fmod (f1, f2); #else f1 = drem (f1, f2);