summaryrefslogtreecommitdiff
path: root/src/floatfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-08-13 00:46:48 +0000
committerRichard M. Stallman <rms@gnu.org>1993-08-13 00:46:48 +0000
commitedf077fb6960e36c16248d175ce0fe50062254a0 (patch)
tree65d9acb7cf4d8b0e625da9142d6cc0e49b359cef /src/floatfns.c
parent7d326723ab1a4ef2fcfef3bc5f143d9b3a828f10 (diff)
downloademacs-edf077fb6960e36c16248d175ce0fe50062254a0.tar.gz
(Flogb): Error at run time if not supported.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r--src/floatfns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c
index 0e9003722d7..b51073b296e 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -647,7 +647,8 @@ This is the same as the exponent of a float.")
XSET (val, Lisp_Int, exp-1);
}
#else
- Well, what *do* you have?
+ /* Would someone like to write code to emulate logb? */
+ error ("`logb' not implemented on this operating system");
#endif
#endif