From 1fd9a5f24995be8722d7ef06d27aa9c955a5fc1c Mon Sep 17 00:00:00 2001
From: jD91mZM2 <me@krake.one>
Date: Sat, 30 Jun 2018 12:15:51 +0200
Subject: [PATCH] Moooore fixes :|

---
 include/bits/unistd.h                 | 7 +++++++
 include/bits/exec.h => src/c/unistd.c | 8 ++++----
 src/unistd/cbindgen.toml              | 4 ++--
 3 files changed, 13 insertions(+), 6 deletions(-)
 create mode 100644 include/bits/unistd.h
 rename include/bits/exec.h => src/c/unistd.c (82%)

diff --git a/include/bits/unistd.h b/include/bits/unistd.h
new file mode 100644
index 00000000..a7167d04
--- /dev/null
+++ b/include/bits/unistd.h
@@ -0,0 +1,7 @@
+#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
diff --git a/include/bits/exec.h b/src/c/unistd.c
similarity index 82%
rename from include/bits/exec.h
rename to src/c/unistd.c
index 242f0278..a2a78ce7 100644
--- a/include/bits/exec.h
+++ b/src/c/unistd.c
@@ -1,7 +1,7 @@
-#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, ...)
 {
diff --git a/src/unistd/cbindgen.toml b/src/unistd/cbindgen.toml
index ef4ad812..a10250c6 100644
--- a/src/unistd/cbindgen.toml
+++ b/src/unistd/cbindgen.toml
@@ -1,6 +1,6 @@
-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]
-- 
GitLab