taskset: include-what-you-use header check

taskset.c should add these lines:
 #include <sched.h>   for sched_getaffinity, etc
 #include <stddef.h>  for size_t
 #include <string.h>  for memset

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2011-07-17 19:59:16 +02:00 committed by Karel Zak
parent 4033fbe3e6
commit 6f45c0e9ff
1 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,9 @@
#include <unistd.h>
#include <getopt.h>
#include <errno.h>
#include <sched.h>
#include <stddef.h>
#include <string.h>
#include "cpuset.h"
#include "nls.h"