Mercurial > hg > octave-jordi
diff liboctave/oct-syscalls.h @ 3504:5eef8a2294bd
[project @ 2000-02-01 10:06:51 by jwe]
author | jwe |
---|---|
date | Tue, 01 Feb 2000 10:07:26 +0000 |
parents | 894d516b4a00 |
children | 755f6509bb01 |
line wrap: on
line diff
--- a/liboctave/oct-syscalls.h +++ b/liboctave/oct-syscalls.h @@ -35,18 +35,18 @@ octave_syscalls { static int dup2 (int, int); - static int dup2 (int, int, string&); + static int dup2 (int, int, std::string&); - static int execvp (const string&, const string_vector&); - static int execvp (const string&, const string_vector&, string&); + static int execvp (const std::string&, const string_vector&); + static int execvp (const std::string&, const string_vector&, std::string&); static int fcntl (int, int, long); - static int fcntl (int, int, long, string&); + static int fcntl (int, int, long, std::string&); - static pid_t fork (string&); - static pid_t vfork (string&); + static pid_t fork (std::string&); + static pid_t vfork (std::string&); - static pid_t getpgrp (string&); + static pid_t getpgrp (std::string&); static pid_t getpid (void); static pid_t getppid (void); @@ -58,10 +58,10 @@ static uid_t geteuid (void); static int pipe (int *); - static int pipe (int *, string&); + static int pipe (int *, std::string&); static pid_t waitpid (pid_t, int); - static pid_t waitpid (pid_t, int, string&); + static pid_t waitpid (pid_t, int, std::string&); }; #endif