source: trunk/libs/newlib/src/newlib/libm/machine/spu/s_erf.c @ 444

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

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

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