s_sinf.c

来自「KPIT GNU Tools is a set of GNU developme」· C语言 代码 · 共 35 行

C
35
字号
/* @(#)z_sinf.c 1.0 98/08/13 *//****************************************************************** * Sine * * Input: *   x - floating point value * * Output: *   sine of x * * Description: *   This routine returns the sine of x. * *****************************************************************/#include "fdlibm.h"#include "zmath.h"float_DEFUN (sinf, (float),        float x){  return (sinef (x, 0));}#ifdef _DOUBLE_IS_32BITSdouble sin (double x){  return (double) sinf ((float) x);}#endif /* _DOUBLE_IS_32BITS */

⌨️ 快捷键说明

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