home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Caml Light 0.61 / Source / src / lib / sys.mli < prev    next >
Encoding:
Text File  |  1993-09-24  |  4.0 KB  |  13 lines  |  [TEXT/MPS ]

  1. (* System interface. *)
  2.  
  3. (* This module provides a simple interface to the operating system. *)
  4.  
  5. exception Sys_error of string;;
  6.         (* Raised by some functions in the [sys] and [io] modules,
  7.            when the underlying system calls fail. The argument to
  8.            [Sys_error] is a string describing the error. The texts
  9.            of the error messages are implementation-dependent, and should
  10.            not be relied upon to catch specific system errors. *)
  11.  
  12. value command_line : string vect;;
  13.