Skip to content
Snippets Groups Projects
Verified Commit 1fd9a5f2 authored by jD91mZM2's avatar jD91mZM2
Browse files

Moooore fixes :|

parent 2f6467bc
No related branches found
No related tags found
No related merge requests found
#ifndef _BITS_UNISTD_H
#define _BITS_UNISTD_H
int execl(const char *path, const char* argv0, ...);
int execle(const char *path, const char* argv0, ...);
#endif
#ifndef _BITS_EXEC_H
#define _BITS_EXEC_H
#include <stdarg.h>
#include <stddef.h>
extern int execv(const char *path, char *const *argv);
int execv(const char *path, char *const *argv);
int execl(const char *path, const char* argv0, ...)
{
......@@ -24,7 +24,7 @@ int execl(const char *path, const char* argv0, ...)
}
}
extern int execve(const char *path, char *const *argv, char *const *envp);
int execve(const char *path, char *const *argv, char *const *envp);
int execle(const char *path, const char* argv0, ...)
{
......
sys_includes = ["stddef.h", "stdint.h", "sys/types.h", "stdarg.h", "bits/exec.h"]
sys_includes = ["stddef.h", "stdint.h", "sys/types.h"]
include_guard = "_UNISTD_H"
trailer = "#include <bits/fcntl.h>"
trailer = "#include <bits/fcntl.h>\n#include <bits/unistd.h>"
language = "C"
[enum]
......
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