Define sunmath prototypes if sunmath.h was not included.
diff --git a/Modules/fpectlmodule.c b/Modules/fpectlmodule.c
index ff3ea76..843bc16 100644
--- a/Modules/fpectlmodule.c
+++ b/Modules/fpectlmodule.c
@@ -140,6 +140,12 @@
        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);