source: trunk/libs/newlib/src/newlib/libm/machine/spu/sf_erf.c

Last change on this file was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 316 bytes
Line 
1#include <math.h>
2#include "headers/erff.h"
3
4float erff(float x)
5{
6  return _erff(x);
7}
8
9/*
10 * The default sf_erf.c contains both erff and erfcf, erfcf was manually added
11 * here, it could be moved to a separate file (similar to s_erf.c).
12 */
13#include "headers/erfcf.h"
14
15float erfcf(float x)
16{
17  return _erfcf(x);
18}
Note: See TracBrowser for help on using the repository browser.