source: CIVL/text/include/math.h@ 0c69eda

1.23 2.0 main test-branch
Last change on this file since 0c69eda was f6ecaae, checked in by Stephen Siegel <siegel@…>, 12 years ago

Cleaned up header files a little more.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@1163 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 409 bytes
Line 
1/* CIVL model of math.h */
2
3#ifdef __MATH__
4#else
5#define __MATH__
6
7$abstract double sin(double x);
8
9$abstract float sinf(float x);
10
11$abstract long double sinl(long double x);
12
13$abstract double sqrt(double x);
14
15$abstract double ceil(double x);
16
17$abstract double exp(double x);
18
19$abstract double tan(double x);
20
21$abstract float tanf(float x);
22
23$abstract long double tanl(long double x);
24
25#endif
Note: See TracBrowser for help on using the repository browser.