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