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