⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mathinit.c

📁 ppc 8245 可编译bsp 包括 uart
💻 C
字号:
/* mathLibInit.c - math library initialization *//* Copyright 1995 Wind River Systems, Inc. *//*modification history--------------------01c,17mar95,ism  Removed 5.1.1 math routines.01b,09jan95,ism  Added array to link in math routines missing from 5.201a,07sep92,smb  written.*//*This file is used to include the math ANSI C library routines in the VxWorks build. The routines are only included when this file is included by usrConfig.c.NOMANUAL*/#ifndef  __INCmathLibInitc#define  __INCmathLibInitc #include "vxWorks.h"#include "math.h"extern void gccMathInit ();extern void gccUssInit ();VOIDFUNCPTR mathFiles[] =    {    (VOIDFUNCPTR) acos,    (VOIDFUNCPTR) asin,    (VOIDFUNCPTR) atan,    (VOIDFUNCPTR) atan2,    (VOIDFUNCPTR) ceil,    (VOIDFUNCPTR) cos,    (VOIDFUNCPTR) cosh,    (VOIDFUNCPTR) exp,    (VOIDFUNCPTR) fabs,    (VOIDFUNCPTR) floor,    (VOIDFUNCPTR) fmod,    (VOIDFUNCPTR) frexp,    (VOIDFUNCPTR) ldexp,    (VOIDFUNCPTR) log,    (VOIDFUNCPTR) log10,    (VOIDFUNCPTR) modf,    (VOIDFUNCPTR) pow,    (VOIDFUNCPTR) sin,    (VOIDFUNCPTR) sinh,    (VOIDFUNCPTR) sqrt,    (VOIDFUNCPTR) tan,    (VOIDFUNCPTR) tanh,    };#endif /* __INCmathLibInitc */

⌨️ 快捷键说明

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