hust testsuite: fix a false positive
[oweals/busybox.git] / miscutils / chrt.c
index 7e40b9f1399b1e69ee054f3920058f47b46bf106..f2f559fd72d9909ecf3c149fcf0ceb4088bbd7b2 100644 (file)
@@ -10,7 +10,6 @@
 //usage:       "[-prfom] [PRIO] [PID | PROG ARGS]"
 //usage:#define chrt_full_usage "\n\n"
 //usage:       "Change scheduling priority and class for a process\n"
-//usage:     "\nOptions:"
 //usage:     "\n       -p      Operate on PID"
 //usage:     "\n       -r      Set SCHED_RR class"
 //usage:     "\n       -f      Set SCHED_FIFO class"
@@ -24,9 +23,6 @@
 
 #include <sched.h>
 #include "libbb.h"
-#ifndef _POSIX_PRIORITY_SCHEDULING
-#warning your system may be foobared
-#endif
 
 static const struct {
        int policy;