Add copyright notices and new function String.chomp
[ocaml.git] / otherlibs / unix / mkdir.c
blob1b8fd6242f72e2680e0dbcff31504baf2e8a6703
1 /***********************************************************************/
2 /* */
3 /* Objective Caml */
4 /* */
5 /* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
6 /* */
7 /* Copyright 1996 Institut National de Recherche en Informatique et */
8 /* en Automatique. All rights reserved. This file is distributed */
9 /* under the terms of the GNU Library General Public License, with */
10 /* the special exception on linking described in file ../../LICENSE. */
11 /* */
12 /***********************************************************************/
14 /* $Id$ */
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <mlvalues.h>
19 #include "unixsupport.h"
21 CAMLprim value unix_mkdir(value path, value perm)
23 if (mkdir(String_val(path), Int_val(perm)) == -1) uerror("mkdir", path);
24 return Val_unit;