diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /sys/etc/envgetd.x | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'sys/etc/envgetd.x')
-rw-r--r-- | sys/etc/envgetd.x | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sys/etc/envgetd.x b/sys/etc/envgetd.x new file mode 100644 index 00000000..749c3aef --- /dev/null +++ b/sys/etc/envgetd.x @@ -0,0 +1,27 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +include <syserr.h> +include <mach.h> + +# ENVGETD -- Fetch an environment variable and try to interpret its value +# as a double. Abort if variable is not found or cannot be converted to +# a number. + +double procedure envgetd (varname) + +char varname[ARB] + +int ip +double dval +char val[MAX_DIGITS] +int ctod(), envfind() +errchk envfind, syserrs + +begin + ip = 1 + if (envfind (varname, val, MAX_DIGITS) > 0) + if (ctod (val, ip, dval) > 0) + return (dval) + + call syserrs (SYS_ENVNNUM, varname) +end |