Audited code. Vsys should now be robust to system exceptions.
[vsys.git] / globals.ml
1 let backend = ref ""
2 let debug = ref true
3 let vsys_version = "0.5"
4
5 type result = Success | Failed
6
7 type fname_and_fd = string option * Unix.file_descr
8
9 (* Relative path, never precededed by a '/' *)
10 type relpath = Relpath of string
11
12 exception Bad_path 
13 exception Bug