Thomas Lovén 1693baaf6b [USER] Init libc with arguments and environment
MESS - execve - Clean up and move earlier
2017-03-27 23:09:09 +02:00

8 lines
192 B
C

#pragma once
#include <stdint.h>
#include <process.h>
#include <thread.h>
void *load_elf(process_t *p, void *data);
thread_t *exec_elf(process_t *p, void *image, char *argv[], char *envp[]);