diff options
author | Mike Frysinger | 2012-07-05 23:19:09 -0400 |
---|---|---|
committer | Mike Frysinger | 2012-07-05 23:19:09 -0400 |
commit | c5fe9f7b723f949457263ef8e22ab807d5b549ce (patch) | |
tree | 805e562a5a90dbafcdeabadc78a81d51b1b862f0 /loginutils/passwd.c | |
parent | 9ad8979ff15e1b894ee1f4bb6a2535a1a2c20d65 (diff) | |
download | busybox-c5fe9f7b723f949457263ef8e22ab807d5b549ce.zip busybox-c5fe9f7b723f949457263ef8e22ab807d5b549ce.tar.gz |
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>
Diffstat (limited to 'loginutils/passwd.c')
-rw-r--r-- | loginutils/passwd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/loginutils/passwd.c b/loginutils/passwd.c index b83db00..a7006f0 100644 --- a/loginutils/passwd.c +++ b/loginutils/passwd.c @@ -15,6 +15,7 @@ #include "libbb.h" #include <syslog.h> +#include <sys/resource.h> /* setrlimit */ static void nuke_str(char *str) { |