You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
syscall/linux/lib/execve2.c

19 lines
384 B

#define __LIBRARY__
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <string.h>
#include <asm/segment.h>
#include <linux/sched.h>
#include <linux/kernel.h>
struct linux_dirent {
long d_ino;
off_t d_off;
unsigned short d_reclen;
char d_name[14];
};
int sys_execve2(const char * filename, char ** argv, char ** envp)
{
return 0;
}