aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/fitsio/ftclos.f
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /pkg/tbtables/fitsio/ftclos.f
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/tbtables/fitsio/ftclos.f')
-rw-r--r--pkg/tbtables/fitsio/ftclos.f21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkg/tbtables/fitsio/ftclos.f b/pkg/tbtables/fitsio/ftclos.f
new file mode 100644
index 00000000..d5a1eb75
--- /dev/null
+++ b/pkg/tbtables/fitsio/ftclos.f
@@ -0,0 +1,21 @@
+C--------------------------------------------------------------------------
+ subroutine ftclos(iunit,status)
+
+C close a FITS file that was previously opened with ftopen or ftinit
+C
+C iunit i Fortran I/O unit number
+C status i returned error status (0=ok)
+C
+C written by Wm Pence, HEASARC/GSFC, June 1991
+
+ integer iunit,status
+
+ logical keep
+
+C close the current HDU and pad the header with blanks
+ call ftchdu(iunit,status)
+
+C close the file
+ keep=.true.
+ call ftclsx(iunit,keep,status)
+ end