Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
aaf45c7b
Commit
aaf45c7b
authored
Jan 08, 1994
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Frem) [MSDOS]: use `fmod', not `drem'. Put in config.h?
parent
1b94449f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
src/data.c
src/data.c
+11
-1
No files found.
src/data.c
View file @
aaf45c7b
...
...
@@ -30,6 +30,16 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "syssignal.h"
#if 0 /* That is untrue--XINT is used below, and it uses INTBITS.
What in the world is values.h, anyway? */
#ifdef MSDOS
/* These are redefined in values.h and not used here */
#undef INTBITS
#undef LONGBITS
#undef SHORTBITS
#endif
#endif
#ifdef LISP_FLOAT_TYPE
#ifdef STDC_HEADERS
...
...
@@ -1791,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)
#if defined (USG) || defined (sun) || defined (ultrix) || defined (hpux)
|| defined (MSDOS)
f1
=
fmod
(
f1
,
f2
);
#else
f1
=
drem
(
f1
,
f2
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment