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