for MPW __SC__

This commit is contained in:
Guido van Rossum 1995-02-27 10:15:10 +00:00
parent 07e3a7e781
commit 464a0a100f
1 changed files with 6 additions and 3 deletions

View File

@ -24,12 +24,15 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Portable fmod(x, y) implementation for systems that don't have it */
#include <math.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "mymath.h"
#include <errno.h>
double
fmod(x, y)
double x, y;
fmod(double x, double y)
{
double i, f;