aboutsummaryrefslogtreecommitdiff
path: root/unix/boot/bootlib/osclose.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /unix/boot/bootlib/osclose.c
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'unix/boot/bootlib/osclose.c')
-rw-r--r--unix/boot/bootlib/osclose.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/unix/boot/bootlib/osclose.c b/unix/boot/bootlib/osclose.c
new file mode 100644
index 00000000..f9be512c
--- /dev/null
+++ b/unix/boot/bootlib/osclose.c
@@ -0,0 +1,29 @@
+/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+ */
+
+#include <unistd.h> /* for close() */
+#include "bootlib.h"
+
+
+/* OS_CLOSE -- Close a file created (opened) by OSCREATE. If writing to a
+ * text file flush any incomplete (non newline terminated) output line.
+ */
+void
+os_close (int fd)
+{
+ XINT junk, xfd=fd;
+ XINT nchars;
+
+ extern int ZPUTTX(), ZCLSTX();
+
+
+ if (osfiletype == BINARY_FILE)
+ close (fd);
+ else {
+ if (txop > text) {
+ nchars = txop - text;
+ ZPUTTX (&xfd, text, &nchars, &junk);
+ }
+ ZCLSTX (&xfd, &junk);
+ }
+}