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/qpoe/qprename.x | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'sys/qpoe/qprename.x')
-rw-r--r-- | sys/qpoe/qprename.x | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sys/qpoe/qprename.x b/sys/qpoe/qprename.x new file mode 100644 index 00000000..2287b0fd --- /dev/null +++ b/sys/qpoe/qprename.x @@ -0,0 +1,25 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +include "qpoe.h" + +# QP_RENAME -- Rename a poefile. + +procedure qp_rename (o_poefile, n_poefile) + +char o_poefile[ARB] #I old poefile name +char n_poefile[ARB] #I new poefile name + +pointer sp, o_fname, n_fname +string extn QPOE_EXTN + +begin + call smark (sp) + call salloc (o_fname, SZ_PATHNAME, TY_CHAR) + call salloc (n_fname, SZ_PATHNAME, TY_CHAR) + + call qp_mkfname (o_poefile, extn, Memc[o_fname], SZ_PATHNAME) + call qp_mkfname (n_poefile, extn, Memc[n_fname], SZ_PATHNAME) + call fm_rename (Memc[o_fname], Memc[n_fname]) + + call sfree (sp) +end |