Skip to content
Snippets Groups Projects
Commit fec57f1c authored by KANATSU Minoru's avatar KANATSU Minoru Committed by Pekka Enberg
Browse files

Add execv() to libc


add symbol for porting CRuby

Signed-off-by: default avatarKANATSU Minoru <icc.pot.tyew272@gmail.com>
Signed-off-by: default avatarPekka Enberg <penberg@cloudius-systems.com>
parent 6439aa7d
No related branches found
No related tags found
No related merge requests found
#include <unistd.h>
extern char **__environ;
int execv(const char *path, char *const argv[])
{
return execve(path, argv, __environ);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment