Workaround compilation errors

This commit is contained in:
jD91mZM2
2018-06-30 09:19:06 +02:00
parent 29a626cd7c
commit 234632d319
7 changed files with 60 additions and 67 deletions
+4
View File
@@ -1,6 +1,8 @@
#ifndef _BITS_EXEC_H
#define _BITS_EXEC_H
extern int execv(const char *path, char *const *argv);
int execl(const char *path, const char* argv0, ...)
{
int argc;
@@ -22,6 +24,8 @@ int execl(const char *path, const char* argv0, ...)
}
}
extern int execve(const char *path, char *const *argv, char *const *envp);
int execle(const char *path, const char* argv0, ...)
{
int argc;