blob: 9e410f5eafc02ce9c03e2b8ecb818826e76ebe1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
(* TEST
include unix
stdin = "/dev/null"
stderr = "/dev/null"
*)
Printf.printf
"Unix.isatty Unix.stdin = %b\n\
Unix.isatty Unix.stdout = %b\n\
Unix.isatty Unix.stderr = %b\n"
(Unix.isatty Unix.stdin)
(Unix.isatty Unix.stdout)
(Unix.isatty Unix.stderr)
|