hush: fix heredoc_bkslash_newline1.tests failure
[oweals/busybox.git] / libbb / vfork_daemon_rexec.c
index 15c92a7cdcf267d5aab64ca125cf266ead15fac4..c0bea0ed21b3eb7bcc806432627e3c25fbb28b86 100644 (file)
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
-#include <sys/prctl.h>
-#ifndef PR_SET_NAME
-#define PR_SET_NAME 15
-#endif
-#ifndef PR_GET_NAME
-#define PR_GET_NAME 16
-#endif
-
 #include "busybox.h" /* uses applet tables */
 #include "NUM_APPLETS.h"
 
 #define NOEXEC_SUPPORT ((NUM_APPLETS > 1) && (ENABLE_FEATURE_PREFER_APPLETS || ENABLE_FEATURE_SH_STANDALONE))
 
 #if defined(__linux__) && (NUM_APPLETS > 1)
+# include <sys/prctl.h>
+# ifndef PR_SET_NAME
+# define PR_SET_NAME 15
+# endif
+# ifndef PR_GET_NAME
+# define PR_GET_NAME 16
+# endif
 void FAST_FUNC set_task_comm(const char *comm)
 {
        /* okay if too long (truncates) */
@@ -98,7 +97,6 @@ int FAST_FUNC run_nofork_applet(int applet_no, char **argv)
         * (getopt32() does it itself, but getopt() doesn't (and can't))
         */
        GETOPT_RESET();
-       /* opt_complementary = NULL; - cleared by each getopt32() call anyway */
 
        argc = string_array_len(argv);
 
@@ -123,7 +121,6 @@ int FAST_FUNC run_nofork_applet(int applet_no, char **argv)
        restore_nofork_data(&old);
        /* Other globals can be simply reset to defaults */
        GETOPT_RESET();
-       /* opt_complementary = NULL; - cleared by each getopt32() call anyway */
 
        return rc & 0xff; /* don't confuse people with "exitcodes" >255 */
 }
@@ -138,7 +135,6 @@ void FAST_FUNC run_noexec_applet_and_exit(int a, const char *name, char **argv)
        xfunc_error_retval = EXIT_FAILURE;
        die_func = NULL;
        GETOPT_RESET();
-       /* opt_complementary = NULL; - cleared by each getopt32() call anyway */
 
 //TODO: think pidof, pgrep, pkill!
 //set_task_comm() makes our pidof find NOEXECs (e.g. "yes >/dev/null"),