1988-07-25 11:40:57 +00:00
|
|
|
#define __NO_DEFS
|
1988-07-25 11:13:26 +00:00
|
|
|
#include <math.h>
|
2018-06-23 22:35:51 +00:00
|
|
|
#include "lib.h"
|
1984-11-29 14:22:02 +00:00
|
|
|
|
2013-05-14 15:11:29 +00:00
|
|
|
double _sin(double x) { return sin(x); }
|
|
|
|
double _cos(double x) { return cos(x); }
|
|
|
|
double _tan(double x) { return tan(x); }
|