diff options
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/header.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/header.c b/stdlib/header.c index 9c31e8f7a..9aba0684f 100644 --- a/stdlib/header.c +++ b/stdlib/header.c @@ -18,7 +18,7 @@ int main(argc, argv) int argc; char ** argv; { - execvp(runtime_name, argv); + execv(runtime_name, argv); write(2, errmsg, sizeof(errmsg)-1); return 2; } |