diff options
author | bde <bde@FreeBSD.org> | 1997-08-31 22:12:19 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-08-31 22:12:19 +0000 |
commit | 0d4a037f8d2510b13dd6fcb1a401491543fa0d9c (patch) | |
tree | d51bb1fdc5875333cdc58104c9ce5c019ac28676 /lib | |
parent | 901de0acb7965e7b2186f2d9f3ecca55f720befc (diff) | |
download | FreeBSD-src-0d4a037f8d2510b13dd6fcb1a401491543fa0d9c.zip FreeBSD-src-0d4a037f8d2510b13dd6fcb1a401491543fa0d9c.tar.gz |
Hide the declaration of `struct exception' from C++, since it conflicts
with the standard C++ `class exception'. This makes matherr() difficult
to use in C++. Small loss.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/msun/src/math.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index 6282b10..d4fe9e6 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -11,7 +11,7 @@ /* * from: @(#)fdlibm.h 5.1 93/09/24 - * $Id$ + * $Id: math.h,v 1.4 1997/02/22 15:10:54 peter Exp $ */ #ifndef _MATH_H_ @@ -64,6 +64,7 @@ extern _LIB_VERSION_TYPE _LIB_VERSION; #define _XOPEN_ fdlibm_xopen #define _POSIX_ fdlibm_posix +#ifndef __cplusplus struct exception { int type; char *name; @@ -71,6 +72,7 @@ struct exception { double arg2; double retval; }; +#endif #define HUGE MAXFLOAT @@ -150,7 +152,9 @@ extern double nextafter __P((double, double)); extern double remainder __P((double, double)); extern double scalb __P((double, double)); +#ifndef __cplusplus extern int matherr __P((struct exception *)); +#endif /* * IEEE Test Vector |