include sys/resource.h where needed

We use functions from sys/resource.h in misc applets, but don't include
the header.  This breaks building with newer glibc versions, so add the
include where needed.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger
2012-07-05 23:19:09 -04:00
parent 9ad8979ff1
commit c5fe9f7b72
7 changed files with 7 additions and 0 deletions

View File

@ -16,6 +16,7 @@
//usage: "\n -v Verbose"
#include "libbb.h"
#include <sys/resource.h> /* getrusage */
/* Information on the resources used by a child process. */
typedef struct {