summaryrefslogtreecommitdiff
path: root/src/unistd/execve.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/execve.c')
-rw-r--r--src/unistd/execve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/execve.c b/src/unistd/execve.c
index 7d54ec91..8d7a1225 100644
--- a/src/unistd/execve.c
+++ b/src/unistd/execve.c
@@ -5,8 +5,8 @@
int execve(const char *path, char *const argv[], char *const envp[])
{
- SCNO(scno, "execve", -1);
- errno = -__libc.syscall(scno, path, argv, envp);
+ SYSCALL_NUMBER(scno, "execve", -1);
+ errno = -__syscall(scno, path, argv, envp);
return -1;
}
/*