Commit 464a0a10 authored by Guido van Rossum's avatar Guido van Rossum

for MPW __SC__

parent 07e3a7e7
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment