diff options
Diffstat (limited to 'src/math/remquo.c')
-rw-r--r-- | src/math/remquo.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/math/remquo.c b/src/math/remquo.c new file mode 100644 index 00000000..3aec6382 --- /dev/null +++ b/src/math/remquo.c @@ -0,0 +1,13 @@ +# define TGSOURCE "remquo.c" +#include "nonstd/tgmath.h" +#include <math.h> + +TYPE TGFN(remquo)(TYPE x, TYPE y, int *quo) +{ + return x - y; +} + +/* +STDC(199901) +LINK(m) +*/ |