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