don't declare fmod/pow for any STDC compiler

This commit is contained in:
Guido van Rossum 1995-01-17 16:33:14 +00:00
parent 5c2306c44f
commit 4d3468deab
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define LONG_MIN (-LONG_MAX-1)
#endif
#ifndef macintosh
#ifndef __STDC__
extern double fmod PROTO((double, double));
extern double pow PROTO((double, double));
#endif