aboutsummaryrefslogtreecommitdiffstats
path: root/vms/gawkmisc.vms
diff options
context:
space:
mode:
Diffstat (limited to 'vms/gawkmisc.vms')
-rw-r--r--vms/gawkmisc.vms6
1 files changed, 6 insertions, 0 deletions
diff --git a/vms/gawkmisc.vms b/vms/gawkmisc.vms
index afff3b8c..346a1e88 100644
--- a/vms/gawkmisc.vms
+++ b/vms/gawkmisc.vms
@@ -188,3 +188,9 @@ files_are_same(char *newfile, SRCFILE *oldfile)
&& f1->st_ino[1] == f2->st_ino[1]
&& f1->st_ino[2] == f2->st_ino[2]);
}
+
+int
+os_isatty(int fd)
+{
+ return (isatty(fd) > 0);
+}