diff options
author | Frans Kaashoek <[email protected]> | 2022-08-17 20:38:11 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2022-08-17 20:38:11 -0400 |
commit | f2ee8690addf0aa52b5de2061fe6d659574406f9 (patch) | |
tree | 367e40e48b0840c280e0e79133f51eed8ce30af9 /user/user.h | |
parent | 1d4c437ea17e3254fe6138fd8dd181de413a43bf (diff) | |
download | xv6-labs-f2ee8690addf0aa52b5de2061fe6d659574406f9.tar.gz xv6-labs-f2ee8690addf0aa52b5de2061fe6d659574406f9.tar.bz2 xv6-labs-f2ee8690addf0aa52b5de2061fe6d659574406f9.zip |
x
Diffstat (limited to 'user/user.h')
-rw-r--r-- | user/user.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/user.h b/user/user.h index 8ac6395..4d398d5 100644 --- a/user/user.h +++ b/user/user.h @@ -9,7 +9,7 @@ int write(int, const void*, int); int read(int, void*, int); int close(int); int kill(int); -int exec(char*, char**); +int exec(const char*, char**); int open(const char*, int); int mknod(const char*, short, short); int unlink(const char*); |