From 2539f2c35955c275a2b8116ce1fc8b9fc2311a89 Mon Sep 17 00:00:00 2001 From: David Wasley Date: Fri, 21 Jan 1983 19:10:36 -0800 Subject: [PATCH] date and time created 83/01/21 11:10:36 by dlw SCCS-vsn: usr.bin/f77/libF77/d_sin.c 1.1 --- usr/src/usr.bin/f77/libF77/d_sin.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 usr/src/usr.bin/f77/libF77/d_sin.c diff --git a/usr/src/usr.bin/f77/libF77/d_sin.c b/usr/src/usr.bin/f77/libF77/d_sin.c new file mode 100644 index 0000000000..3f85904cb5 --- /dev/null +++ b/usr/src/usr.bin/f77/libF77/d_sin.c @@ -0,0 +1,10 @@ +/* + * "@(#)d_sin.c 1.1" + */ + +double d_sin(x) +double *x; +{ +double sin(); +return( sin(*x) ); +} -- 2.20.1