summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/isatty.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/isatty.c')
-rw-r--r--otherlibs/unix/isatty.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/otherlibs/unix/isatty.c b/otherlibs/unix/isatty.c
new file mode 100644
index 000000000..f534dd773
--- /dev/null
+++ b/otherlibs/unix/isatty.c
@@ -0,0 +1,22 @@
+/***********************************************************************/
+/* */
+/* Objective Caml */
+/* */
+/* Xavier Leroy, projet Gallium, INRIA Rocquencourt */
+/* */
+/* Copyright 2006 Institut National de Recherche en Informatique et */
+/* en Automatique. All rights reserved. This file is distributed */
+/* under the terms of the GNU Library General Public License, with */
+/* the special exception on linking described in file ../../LICENSE. */
+/* */
+/***********************************************************************/
+
+/* $Id$ */
+
+#include <mlvalues.h>
+#include "unixsupport.h"
+
+CAMLprim value unix_isatty(value fd)
+{
+ return (Val_bool(isatty(Int_val(fd))));
+}