summaryrefslogtreecommitdiff
path: root/include/math.h
diff options
context:
space:
mode:
authorsimonb <simonb@NetBSD.org>2000-06-13 01:21:52 +0000
committersimonb <simonb@NetBSD.org>2000-06-13 01:21:52 +0000
commit3f935d014cefa69d9af35dc1afe6fef904513039 (patch)
treeb51a0e5b059ea4b54c077342178031a2f5e30ec9 /include/math.h
parent1a658c59646db4ee1d008107fd97b72f619dfaed (diff)
Remove 'extern' from function declarations.
Diffstat (limited to 'include/math.h')
-rw-r--r--include/math.h244
1 files changed, 122 insertions, 122 deletions
diff --git a/include/math.h b/include/math.h
index bd56e5f9d23..d098c6a1741 100644
--- a/include/math.h
+++ b/include/math.h
@@ -1,4 +1,4 @@
-/* $NetBSD: math.h,v 1.21 2000/01/04 14:20:05 kleink Exp $ */
+/* $NetBSD: math.h,v 1.22 2000/06/13 01:21:53 simonb Exp $ */
/*
* ====================================================
@@ -104,87 +104,87 @@ __BEGIN_DECLS
/*
* ANSI/POSIX
*/
-extern double acos __P((double));
-extern double asin __P((double));
-extern double atan __P((double));
-extern double atan2 __P((double, double));
-extern double cos __P((double));
-extern double sin __P((double));
-extern double tan __P((double));
-
-extern double cosh __P((double));
-extern double sinh __P((double));
-extern double tanh __P((double));
-
-extern double exp __P((double));
-extern double frexp __P((double, int *));
-extern double ldexp __P((double, int));
-extern double log __P((double));
-extern double log10 __P((double));
-extern double modf __P((double, double *));
-
-extern double pow __P((double, double));
-extern double sqrt __P((double));
-
-extern double ceil __P((double));
-extern double fabs __P((double));
-extern double floor __P((double));
-extern double fmod __P((double, double));
+double acos __P((double));
+double asin __P((double));
+double atan __P((double));
+double atan2 __P((double, double));
+double cos __P((double));
+double sin __P((double));
+double tan __P((double));
+
+double cosh __P((double));
+double sinh __P((double));
+double tanh __P((double));
+
+double exp __P((double));
+double frexp __P((double, int *));
+double ldexp __P((double, int));
+double log __P((double));
+double log10 __P((double));
+double modf __P((double, double *));
+
+double pow __P((double, double));
+double sqrt __P((double));
+
+double ceil __P((double));
+double fabs __P((double));
+double floor __P((double));
+double fmod __P((double, double));
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) || \
defined(_XOPEN_SOURCE)
-extern double erf __P((double));
-extern double erfc __P((double));
-extern double gamma __P((double));
-extern double hypot __P((double, double));
-extern int isnan __P((double));
-extern int finite __P((double));
-extern double j0 __P((double));
-extern double j1 __P((double));
-extern double jn __P((int, double));
-extern double lgamma __P((double));
-extern double y0 __P((double));
-extern double y1 __P((double));
-extern double yn __P((int, double));
+double erf __P((double));
+double erfc __P((double));
+double gamma __P((double));
+double hypot __P((double, double));
+int isnan __P((double));
+int finite __P((double));
+double j0 __P((double));
+double j1 __P((double));
+double jn __P((int, double));
+double lgamma __P((double));
+double y0 __P((double));
+double y1 __P((double));
+double yn __P((int, double));
#if !defined(_XOPEN_SOURCE) || (_XOPEN_SOURCE - 0) >= 500
-extern double acosh __P((double));
-extern double asinh __P((double));
-extern double atanh __P((double));
-extern double cbrt __P((double));
-extern double expm1 __P((double));
-extern int ilogb __P((double));
-extern double log1p __P((double));
-extern double logb __P((double));
-extern double nextafter __P((double, double));
-extern double remainder __P((double, double));
-extern double rint __P((double));
-extern double scalb __P((double, double));
+double acosh __P((double));
+double asinh __P((double));
+double atanh __P((double));
+double cbrt __P((double));
+double expm1 __P((double));
+int ilogb __P((double));
+double log1p __P((double));
+double logb __P((double));
+double nextafter __P((double, double));
+double remainder __P((double, double));
+double rint __P((double));
+double scalb __P((double, double));
#endif /* !defined(_XOPEN_SOURCE) || (_XOPEN_SOURCE - 0) >= 500 */
#endif /* !_ANSI_SOURCE) && !_POSIX_C_SOURCE || _XOPEN_SOURCE */
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \
!defined(_XOPEN_SOURCE)
#ifndef __cplusplus
-extern int matherr __P((struct exception *));
+int matherr __P((struct exception *));
#endif
/*
* IEEE Test Vector
*/
-extern double significand __P((double));
+double significand __P((double));
/*
* Functions callable from C, intended to support IEEE arithmetic.
*/
-extern double copysign __P((double, double));
-extern double scalbn __P((double, int));
+double copysign __P((double, double));
+double scalbn __P((double, int));
/*
* BSD math library entry points
*/
-extern double cabs __P((/* struct complex { double r; double i; } */));
-extern double drem __P((double, double));
+double cabs __P((/* struct complex { double r; double i; } */));
+double drem __P((double, double));
#endif /* !_ANSI_SOURCE && !_POSIX_C_SOURCE && !_XOPEN_SOURCE */
@@ -194,88 +194,88 @@ extern double drem __P((double, double));
* Reentrant version of gamma & lgamma; passes signgam back by reference
* as the second argument; user must allocate space for signgam.
*/
-extern double gamma_r __P((double, int *));
-extern double lgamma_r __P((double, int *));
+double gamma_r __P((double, int *));
+double lgamma_r __P((double, int *));
#endif /* !... || _REENTRANT */
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \
!defined(_XOPEN_SOURCE)
-extern int isinf __P((double));
+int isinf __P((double));
/* float versions of ANSI/POSIX functions */
-extern float acosf __P((float));
-extern float asinf __P((float));
-extern float atanf __P((float));
-extern float atan2f __P((float, float));
-extern float cosf __P((float));
-extern float sinf __P((float));
-extern float tanf __P((float));
-
-extern float coshf __P((float));
-extern float sinhf __P((float));
-extern float tanhf __P((float));
-
-extern float expf __P((float));
-extern float frexpf __P((float, int *));
-extern float ldexpf __P((float, int));
-extern float logf __P((float));
-extern float log10f __P((float));
-extern float modff __P((float, float *));
-
-extern float powf __P((float, float));
-extern float sqrtf __P((float));
-
-extern float ceilf __P((float));
-extern float fabsf __P((float));
-extern float floorf __P((float));
-extern float fmodf __P((float, float));
-
-extern float erff __P((float));
-extern float erfcf __P((float));
-extern float gammaf __P((float));
-extern float hypotf __P((float, float));
-extern int isinff __P((float));
-extern int isnanf __P((float));
-extern int finitef __P((float));
-extern float j0f __P((float));
-extern float j1f __P((float));
-extern float jnf __P((int, float));
-extern float lgammaf __P((float));
-extern float y0f __P((float));
-extern float y1f __P((float));
-extern float ynf __P((int, float));
-
-extern float acoshf __P((float));
-extern float asinhf __P((float));
-extern float atanhf __P((float));
-extern float cbrtf __P((float));
-extern float logbf __P((float));
-extern float nextafterf __P((float, float));
-extern float remainderf __P((float, float));
-extern float scalbf __P((float, float));
+float acosf __P((float));
+float asinf __P((float));
+float atanf __P((float));
+float atan2f __P((float, float));
+float cosf __P((float));
+float sinf __P((float));
+float tanf __P((float));
+
+float coshf __P((float));
+float sinhf __P((float));
+float tanhf __P((float));
+
+float expf __P((float));
+float frexpf __P((float, int *));
+float ldexpf __P((float, int));
+float logf __P((float));
+float log10f __P((float));
+float modff __P((float, float *));
+
+float powf __P((float, float));
+float sqrtf __P((float));
+
+float ceilf __P((float));
+float fabsf __P((float));
+float floorf __P((float));
+float fmodf __P((float, float));
+
+float erff __P((float));
+float erfcf __P((float));
+float gammaf __P((float));
+float hypotf __P((float, float));
+int isinff __P((float));
+int isnanf __P((float));
+int finitef __P((float));
+float j0f __P((float));
+float j1f __P((float));
+float jnf __P((int, float));
+float lgammaf __P((float));
+float y0f __P((float));
+float y1f __P((float));
+float ynf __P((int, float));
+
+float acoshf __P((float));
+float asinhf __P((float));
+float atanhf __P((float));
+float cbrtf __P((float));
+float logbf __P((float));
+float nextafterf __P((float, float));
+float remainderf __P((float, float));
+float scalbf __P((float, float));
/*
* float version of IEEE Test Vector
*/
-extern float significandf __P((float));
+float significandf __P((float));
/*
* Float versions of functions callable from C, intended to support
* IEEE arithmetic.
*/
-extern float copysignf __P((float, float));
-extern int ilogbf __P((float));
-extern float rintf __P((float));
-extern float scalbnf __P((float, int));
+float copysignf __P((float, float));
+int ilogbf __P((float));
+float rintf __P((float));
+float scalbnf __P((float, int));
/*
* float versions of BSD math library entry points
*/
-extern float cabsf __P((/* struct complex { float r; float i; } */));
-extern float dremf __P((float, float));
-extern float expm1f __P((float));
-extern float log1pf __P((float));
+float cabsf __P((/* struct complex { float r; float i; } */));
+float dremf __P((float, float));
+float expm1f __P((float));
+float log1pf __P((float));
#endif /* !_ANSI_SOURCE && !_POSIX_C_SOURCE && !_XOPEN_SOURCE */
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \
@@ -285,8 +285,8 @@ extern float log1pf __P((float));
* signgam back by reference as the second argument; user must
* allocate space for signgam.
*/
-extern float gammaf_r __P((float, int *));
-extern float lgammaf_r __P((float, int *));
+float gammaf_r __P((float, int *));
+float lgammaf_r __P((float, int *));
#endif /* !... || _REENTRANT */
__END_DECLS