source: CIVL/text/include/math.h@ a853a2a

1.23 2.0 main test-branch
Last change on this file since a853a2a was 903c81e, checked in by Manchun Zheng <zmanchun@…>, 12 years ago

added system function _add_thread() for supporting pthread_exit().

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

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