mirror of
https://github.com/python/cpython.git
synced 2025-08-27 12:16:04 +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 */
|
||||
|
||||
#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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue