diff liboctave/lo-sysdep.cc @ 3504:5eef8a2294bd

[project @ 2000-02-01 10:06:51 by jwe]
author jwe
date Tue, 01 Feb 2000 10:07:26 +0000
parents d14c483b3c12
children 63c75bc3db82
line wrap: on
line diff
--- a/liboctave/lo-sysdep.cc	Tue Feb 01 04:06:39 2000 +0000
+++ b/liboctave/lo-sysdep.cc	Tue Feb 01 10:07:26 2000 +0000
@@ -49,10 +49,10 @@
 #include "lo-error.h"
 #include "pathlen.h"
 
-string
+std::string
 octave_getcwd (void)
 {
-  string retval;
+  std::string retval;
 
   char buf[MAXPATHLEN];
 
@@ -75,7 +75,7 @@
 }
 
 int
-octave_chdir (const string& path)
+octave_chdir (const std::string& path)
 {
 #if defined (__EMX__)
   int retval = -1;