diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2001-03-07 10:22:20 +0000 |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2001-03-07 10:22:20 +0000 |
| commit | c4db476c87f3639857ee657cee2b090b4fcd9e04 (patch) | |
| tree | c70e6430e7cadca53834a8286c8ccef90cd87d6a | |
| parent | f115a0826d5898dd2b7b563b54895cf5cd12ac24 (diff) | |
| download | cpython-git-c4db476c87f3639857ee657cee2b090b4fcd9e04.tar.gz | |
Define sunmath prototypes if sunmath.h was not included.
| -rw-r--r-- | Modules/fpectlmodule.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/fpectlmodule.c b/Modules/fpectlmodule.c index ff3ea76dd5..843bc165fa 100644 --- a/Modules/fpectlmodule.c +++ b/Modules/fpectlmodule.c @@ -140,6 +140,12 @@ static void fpe_reset(Sigfunc *handler) ld -G -o fpectlmodule.so -L/opt/SUNWspro/lib fpectlmodule.o -lsunmath -lm */ #include <math.h> +#ifndef _SUNMATH_H + extern void nonstandard_arithmetic(void); + extern int ieee_flags(const char*, const char*, const char*, char **); + extern long ieee_handler(const char*, const char*, sigfpe_handler_type); +#endif + char *mode="exception", *in="all", *out; (void) nonstandard_arithmetic(); (void) ieee_flags("clearall",mode,in,&out); |
