summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1994-03-01 17:16:19 +0000
committerjtc <jtc@NetBSD.org>1994-03-01 17:16:19 +0000
commit29576d7ee9155d13ff72d2afea26a216e6ebe410 (patch)
treef069bf7e70ce6af94afc3560e6267c77ebe9fde8 /include
parentefcdc02b304e04a1583e61a72d57344fd72aaa06 (diff)
Add cabs() and drem(), for BSD libm compatibility.
Diffstat (limited to 'include')
-rw-r--r--include/math.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/math.h b/include/math.h
index 7efa13751b3..c3bf4a3c833 100644
--- a/include/math.h
+++ b/include/math.h
@@ -11,7 +11,7 @@
/*
* from: @(#)fdlibm.h 5.1 93/09/24
- * $Id: math.h,v 1.7 1994/02/14 02:11:39 cgd Exp $
+ * $Id: math.h,v 1.8 1994/03/01 17:16:19 jtc Exp $
*/
#ifndef _MATH_H_
@@ -168,6 +168,8 @@ extern double scalbn __P((double, int));
/*
* BSD math library entry points
*/
+extern double cabs();
+extern double drem __P((double, double));
extern double expm1 __P((double));
extern double log1p __P((double));