execve.c\process\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/process/execve.c
blob: 70286a17397da61e6dc31ff6db7f0c4dd2e77ef4 (plain) (blame)
1
2
3
4
5
6
7
8
#include <unistd.h>
#include "syscall.h"
int execve(const char *path, char *const argv[], char *const envp[])
{
	/* do we need to use environ if envp is null? */
	return syscall(SYS_execve, path, argv, envp);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月07日 08:41:00 +0000

AltStyle によって変換されたページ (->オリジナル) /