]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MINICERN/mathlib/gen/c/rsinin.F
Fixing for Sun
[u/mrichter/AliRoot.git] / MINICERN / mathlib / gen / c / rsinin.F
CommitLineData
fe4da5cc 1*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1996/04/01 15:02:06 mclareni
6* Mathlib gen
7*
8*
9#include "gen/pilot.h"
10#if defined(CERNLIB_DOUBLE)
11 FUNCTION RSININ(X)
12#include "gen/def64.inc"
13 + DSININ,DCOSIN,D
14
15 SROUND(D)=D+(D-SNGL(D))
16
17 RSININ=SROUND(DSININ(DBLE(X)))
18 RETURN
19
20 ENTRY SININT(X)
21 SININT=SROUND(DSININ(DBLE(X)))
22 RETURN
23
24 ENTRY RCOSIN(X)
25 RCOSIN=SROUND(DCOSIN(DBLE(X)))
26 RETURN
27
28 ENTRY COSINT(X)
29 COSINT=SROUND(DCOSIN(DBLE(X)))
30 RETURN
31
32 END
33#endif