mirror of https://github.com/python/cpython
Microsoft C changes
This commit is contained in:
parent
88661e8f41
commit
7081cf54bf
|
@ -33,12 +33,15 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
|
||||
#include "mymath.h"
|
||||
|
||||
#ifndef _MSC_VER
|
||||
#ifndef __STDC__
|
||||
extern double fmod PROTO((double, double));
|
||||
extern double frexp PROTO((double, int *));
|
||||
extern double ldexp PROTO((double, int));
|
||||
extern double modf PROTO((double, double *));
|
||||
#endif
|
||||
#endif /* __STDC__ */
|
||||
#endif /* _MSC_VER */
|
||||
|
||||
|
||||
#if defined(HAVE_HYPOT) && !defined(NeXT)
|
||||
extern double hypot PROTO((double, double));
|
||||
|
|
Loading…
Reference in New Issue