r_log10_.c

来自「操作系统SunOS 4.1.3版本的源码」· C语言 代码 · 共 19 行

C
19
字号
#ifndef lintstatic	char sccsid[] = "@(#)r_log10_.c 1.1 92/07/30 SMI";#endif/* * Copyright (c) 1986 by Sun Microsystems, Inc. */#include <math.h>FLOATFUNCTIONTYPE r_log10_(x)float *x;{	float w;	w = (float) log10((double)*x);	RETURNFLOAT(w);}

⌨️ 快捷键说明

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