/***********************************************************************/ /* */ /* OCaml */ /* */ /* Xavier Leroy, projet Cristal, INRIA Rocquencourt */ /* */ /* Copyright 1996 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. */ /* */ /***********************************************************************/ #ifndef CAML_UNIXSUPPORT_H #define CAML_UNIXSUPPORT_H #ifdef HAS_UNISTD #include #endif #ifdef __cplusplus extern "C" { #endif #define Nothing ((value) 0) extern value unix_error_of_code (int errcode); extern int code_of_unix_error (value error); CAMLnoreturn_start extern void unix_error (int errcode, char * cmdname, value arg) CAMLnoreturn_end; CAMLnoreturn_start extern void uerror (char * cmdname, value arg) CAMLnoreturn_end; extern void caml_unix_check_path(value path, char * cmdname); #define UNIX_BUFFER_SIZE 65536 #define DIR_Val(v) *((DIR **) &Field(v, 0)) extern char ** cstringvect(value arg, char * cmdname); #ifdef __cplusplus } #endif #endif /* CAML_UNIXSUPPORT_H */