blob: 5f79fd02fcc954f34bfb4122542eb87cc9d70d29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* vi: set sw=4 ts=4: */
/*
* execve() for uClibc
*
* Copyright (C) 2000-2004 by Erik Andersen <andersen@codpoet.org>
*
* GNU Library General Public License (LGPL) version 2 or later.
*/
#include "syscalls.h"
#include <unistd.h>
#include <string.h>
#include <sys/param.h>
#define __NR___syscall_execve __NR_execve
static inline _syscall3(int, __syscall_execve, const char *, filename,
char *const *, argv, char *const *, envp);
int execve(const char * filename, char *const * argv, char *const * envp)
{
return __syscall_execve(filename, argv, envp);
}
|