w_dremf.c

来自「freedos32的源代码」· C语言 代码 · 共 17 行

C
17
字号
/* * dremf() wrapper for remainderf(). * * Written by J.T. Conklin, <jtc@wimsey.com> * Placed into the Public Domain, 1994. */#include "math.h"#include "math_private.h"floatdremf(x, y)	float x, y;{	return remainderf(x, y);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?