xref: /csrg-svn/usr.bin/f77/libF77/r_sinh.c (revision 23854)
110536Sdlw /*
222967Skre  * Copyright (c) 1980 Regents of the University of California.
322967Skre  * All rights reserved.  The Berkeley software License Agreement
422967Skre  * specifies the terms and conditions for redistribution.
522967Skre  *
6*23854Sjerry  *	@(#)r_sinh.c	5.2	07/08/85
710536Sdlw  */
810536Sdlw 
9*23854Sjerry float r_sinh(x)
1010536Sdlw float *x;
1110536Sdlw {
1210536Sdlw double sinh();
1310536Sdlw return( sinh(*x) );
1410536Sdlw }
15