From: Wiljo Heinen Date: Wed, 5 Jan 1994 03:45:29 +0000 (+0000) Subject: Deleted some spurious CFLAGS. Added the deletd z_abs.c file under another X-Git-Tag: FreeBSD-release/1.1~615 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/910cfe88ed9aad89eb5d3c441868de9e05ed53a8?ds=inline Deleted some spurious CFLAGS. Added the deletd z_abs.c file under another name. --- diff --git a/lib/libF77/Makefile b/lib/libF77/Makefile index 9334dee7cd..9a790d6566 100644 --- a/lib/libF77/Makefile +++ b/lib/libF77/Makefile @@ -1,5 +1,5 @@ LIB=F77 -CFLAGS+= -O -I.. -DSkip_f2c_Undefs -DIEEE_drem +CFLAGS+= -DSkip_f2c_Undefs -DIEEE_drem MISC = Version.c main.c s_rnge.c abort_.c getarg_.c iargc_.c getenv_.c\ signal_.c s_stop.c s_paus.c system_.c cabs.c\ diff --git a/lib/libF77/z_abs.c.obsolete b/lib/libF77/z_abs.c.obsolete new file mode 100644 index 0000000000..7e67ad2957 --- /dev/null +++ b/lib/libF77/z_abs.c.obsolete @@ -0,0 +1,12 @@ +#include "f2c.h" + +#ifdef KR_headers +double f__cabs(); +double z_abs(z) doublecomplex *z; +#else +double f__cabs(double, double); +double z_abs(doublecomplex *z) +#endif +{ +return( f__cabs( z->r, z->i ) ); +}