diff liboctave/file-ops.cc @ 1772:95c4c5705909

[project @ 1996-01-23 07:25:59 by jwe]
author jwe
date Tue, 23 Jan 1996 07:28:23 +0000
parents a51354c34bea
children 5215571ea783
line wrap: on
line diff
--- a/liboctave/file-ops.cc
+++ b/liboctave/file-ops.cc
@@ -161,31 +161,31 @@
 }
 
 int
-xmkdir (const string& name, mode_t mode)
+oct_mkdir (const string& name, mode_t mode)
 {
   return mkdir (name.c_str (), mode);
 }
 
 int
-xrmdir (const string& name)
+oct_rmdir (const string& name)
 {
   return rmdir (name.c_str ());
 }
 
 int
-xrename (const string& from, const string& to)
+oct_rename (const string& from, const string& to)
 {
   return rename (from.c_str (), to.c_str ());
 }
 
 int
-xmkfifo (const string& name, mode_t mode)
+oct_mkfifo (const string& name, mode_t mode)
 {
   return mkfifo (name.c_str (), mode);
 }
 
 int
-xumask (mode_t mode)
+oct_umask (mode_t mode)
 {
 #if defined (HAVE_UMASK)
   return umask (mode);