* Microscopic corrections to make things compile on the Cray APP.

* Removed one use of $> in Makefile and warned about others.
  Added configurable lines in Makefile to change CC and AR.
This commit is contained in:
Guido van Rossum 1993-04-07 14:06:14 +00:00
parent f56e3db1dd
commit 9575a44575
6 changed files with 32 additions and 5 deletions

View file

@ -35,6 +35,11 @@ extern int errno;
#include <math.h>
#ifdef i860
/* Cray APP has bogus definition of HUGE_VAL in <math.h> */
#undef HUGE_VAL
#endif
#ifndef __STDC__
extern double fmod PROTO((double, double));
#endif