summaryrefslogtreecommitdiff
path: root/stdlib/sys.mli
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/sys.mli')
-rw-r--r--stdlib/sys.mli3
1 files changed, 1 insertions, 2 deletions
diff --git a/stdlib/sys.mli b/stdlib/sys.mli
index 66d4fa2bec..4768d571e4 100644
--- a/stdlib/sys.mli
+++ b/stdlib/sys.mli
@@ -23,8 +23,7 @@ external file_exists: string -> bool = "sys_file_exists"
(* Test if a file with the given name exists. *)
external remove: string -> unit = "sys_remove"
(* Remove the given file name from the file system. *)
-external rename : string -> string -> unit = "sys_rename"
-external rename' : src:string -> dst:string -> unit = "sys_rename"
+external rename: string -> string -> unit = "sys_rename"
(* Rename a file. The first argument is the old name and the
second is the new name. *)
external getenv: string -> string = "sys_getenv"