1.23
2.0
main
test-branch
| 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.