for MPW __SC__
This commit is contained in:
parent
07e3a7e781
commit
464a0a100f
|
@ -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…
Reference in New Issue