From: David Wasley Date: Sat, 22 Jan 1983 03:10:41 +0000 (-0800) Subject: date and time created 83/01/21 11:10:41 by dlw X-Git-Tag: BSD-4_1c_2-Snapshot-Development~932 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/d59ad25b9c3ebb5812cddeea8c5a1d4b7b5a2a30 date and time created 83/01/21 11:10:41 by dlw SCCS-vsn: usr.bin/f77/libF77/d_sinh.c 1.1 --- diff --git a/usr/src/usr.bin/f77/libF77/d_sinh.c b/usr/src/usr.bin/f77/libF77/d_sinh.c new file mode 100644 index 0000000000..5a3eb29f93 --- /dev/null +++ b/usr/src/usr.bin/f77/libF77/d_sinh.c @@ -0,0 +1,10 @@ +/* + * "@(#)d_sinh.c 1.1" + */ + +double d_sinh(x) +double *x; +{ +double sinh(); +return( sinh(*x) ); +}