|
@@ -38,10 +38,10 @@ _syscall1(void, _exit, int, status);
|
|
|
|
|
|
|
|
|
#ifdef L_fork
|
|
|
-#ifdef __UCLIBC_HAS_MMU__
|
|
|
-#include <unistd.h>
|
|
|
-_syscall0(pid_t, fork);
|
|
|
-#endif
|
|
|
+# ifdef __UCLIBC_HAS_MMU__
|
|
|
+# include <unistd.h>
|
|
|
+ _syscall0(pid_t, fork);
|
|
|
+# endif
|
|
|
#endif
|
|
|
|
|
|
|
|
@@ -357,10 +357,10 @@ gid_t getegid(void)
|
|
|
|
|
|
#ifdef __NR_umount2
|
|
|
|
|
|
-#ifdef L_umount2
|
|
|
-#include <sys/mount.h>
|
|
|
-_syscall2(int, umount2, const char *, special_file, int, flags);
|
|
|
-#endif
|
|
|
+# ifdef L_umount2
|
|
|
+# include <sys/mount.h>
|
|
|
+ _syscall2(int, umount2, const char *, special_file, int, flags);
|
|
|
+# endif
|
|
|
#endif
|
|
|
|
|
|
|
|
@@ -685,10 +685,10 @@ _syscall2(int, fstatfs, int, fd, struct statfs *, buf);
|
|
|
|
|
|
#ifdef __UCLIBC_HAS_MMU__
|
|
|
|
|
|
-#ifdef L_ioperm
|
|
|
-#include <sys/io.h>
|
|
|
-_syscall3(int, ioperm, unsigned long, from, unsigned long, num, int, turn_on);
|
|
|
-#endif
|
|
|
+# ifdef L_ioperm
|
|
|
+# include <sys/io.h>
|
|
|
+ _syscall3(int, ioperm, unsigned long, from, unsigned long, num, int, turn_on);
|
|
|
+# endif
|
|
|
#endif
|
|
|
|
|
|
|
|
@@ -895,6 +895,11 @@ _syscall3(int, sigprocmask, int, how, const sigset_t *, set, sigset_t *,
|
|
|
|
|
|
|
|
|
|
|
|
+#ifdef L_delete_module
|
|
|
+# ifdef __NR_delete_module
|
|
|
+ _syscall1(int, delete_module, const char *, name)
|
|
|
+# endif
|
|
|
+#endif
|
|
|
|
|
|
|
|
|
|