Add copyright notices and new function String.chomp
[ocaml.git] / otherlibs / unix / rename.c
blob65f33c8b57fd89793145646069ffbcd1768373e3
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 <stdio.h>
17 #include <mlvalues.h>
18 #include "unixsupport.h"
20 CAMLprim value unix_rename(value path1, value path2)
22 if (rename(String_val(path1), String_val(path2)) == -1)
23 uerror("rename", path1);
24 return Val_unit;