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