chiark / gitweb /
Prep v232: Apply missing updates from upstream
[elogind.git] / src / basic / missing_syscall.h
index 8a1c24cc560b817e119b0bfd0a146bdc3d2c3e9a..84598c05bd89b7b57481fd623350f03046cfbe68 100644 (file)
@@ -181,18 +181,6 @@ static inline int setns(int fd, int nstype) {
 /* ======================================================================= */
 
 #if 0 /// UNNEEDED by elogind
-static inline int raw_clone(unsigned long flags, void *child_stack) {
-#if defined(__s390__) || defined(__CRIS__)
-        /* On s390 and cris the order of the first and second arguments
-         * of the raw clone() system call is reversed. */
-        return (int) syscall(__NR_clone, child_stack, flags);
-#else
-        return (int) syscall(__NR_clone, flags, child_stack);
-#endif
-}
-
-/* ======================================================================= */
-
 static inline pid_t raw_getpid(void) {
 #if defined(__alpha__)
         return (pid_t) syscall(__NR_getxpid);