Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
process
execv.c
pretty
plain
permalink
blame
history
•
8 lines
•
138 B
1
#include <unistd.h>
2
3
extern char **__environ;
4
5
int execv(const char *path, char *const argv[])
6
{
7
	return execve(path, argv, __environ);
8
}