diff options
| author | Karl Heuer | 1994-02-01 23:21:22 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-02-01 23:21:22 +0000 |
| commit | d9f082eccae83275db39962ea7bbe958510fcb08 (patch) | |
| tree | 70cc4a37b7418555046c89b77480b20f2b3484a0 /src/data.c | |
| parent | 8fdeec3721df07d698697f5149186e99030c0f13 (diff) | |
| download | emacs-d9f082eccae83275db39962ea7bbe958510fcb08.tar.gz emacs-d9f082eccae83275db39962ea7bbe958510fcb08.zip | |
(Fmod): Use HAVE_FMOD.
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
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.") | |||
| 1801 | if (f2 == 0) | 1801 | if (f2 == 0) |
| 1802 | Fsignal (Qarith_error, Qnil); | 1802 | Fsignal (Qarith_error, Qnil); |
| 1803 | 1803 | ||
| 1804 | #if defined (USG) || defined (sun) || defined (ultrix) || defined (hpux) || defined (MSDOS) | 1804 | #ifdef HAVE_FMOD |
| 1805 | f1 = fmod (f1, f2); | 1805 | f1 = fmod (f1, f2); |
| 1806 | #else | 1806 | #else |
| 1807 | f1 = drem (f1, f2); | 1807 | f1 = drem (f1, f2); |