Kaydet (Commit) 464a0a10 authored tarafından Guido van Rossum's avatar Guido van Rossum

for MPW __SC__

üst 07e3a7e7
...@@ -24,12 +24,15 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -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 */ /* 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> #include <errno.h>
double double
fmod(x, y) fmod(double x, double y)
double x, y;
{ {
double i, f; 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