mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
for MPW __SC__
This commit is contained in:
parent
07e3a7e781
commit
464a0a100f
1 changed files with 6 additions and 3 deletions
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue