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 /pkg/images/tv/wcslab/zz.x | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/images/tv/wcslab/zz.x')
-rw-r--r-- | pkg/images/tv/wcslab/zz.x | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pkg/images/tv/wcslab/zz.x b/pkg/images/tv/wcslab/zz.x new file mode 100644 index 00000000..e6d0224f --- /dev/null +++ b/pkg/images/tv/wcslab/zz.x @@ -0,0 +1,23 @@ +include <gset.h> +include <math.h> + + +# Define the offset array. +define OFFSET Memr[$1+$2-1] + +procedure wl_label (wd) + +pointer wd # I: the WCSLAB descriptor + +int i +pointer sp, offset_ptr + +begin + # Get some memory. + call smark (sp) + call salloc (offset_ptr, N_SIDES, TY_REAL) + do i = 1, N_SIDES + OFFSET(offset_ptr,i) = 0. + + call sfree (sp) +end |