Skip to content

Commit 9735ea8

Browse files
committed
Add install test
1 parent bfbc5a9 commit 9735ea8

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

deps/test/cephes/test_install.c

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#include <stdio.h>
2+
3+
extern double sindg ( double x );
4+
5+
int main() {
6+
double x;
7+
double y;
8+
9+
x = 30.0;
10+
y = sindg( 30.0 );
11+
12+
printf( "sin( %lf ) = %lf", x, y );
13+
printf( "\n" );
14+
}

0 commit comments

Comments
 (0)