blob: 527d4fbed201d4b4383beda7567245364b169ca6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* m68k provides an optimized __ieee752_fmod. */
#include <math-svid-compat.h>
#ifdef SHARED
# undef SHLIB_COMPAT
# define SHLIB_COMPAT(a, b, c) 1
# undef LIBM_SVID_COMPAT
# define LIBM_SVID_COMPAT 1
# undef compat_symbol
# define compat_symbol(a, b, c, d)
#endif
#include <math/w_fmod_compat.c>
#ifdef SHARED
libm_alias_double (__fmod_compat, fmod)
#endif
|