diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-07-05 23:19:09 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-07-05 23:19:09 -0400 |
commit | c5fe9f7b723f949457263ef8e22ab807d5b549ce (patch) | |
tree | 805e562a5a90dbafcdeabadc78a81d51b1b862f0 /networking/ntpd.c | |
parent | 9ad8979ff15e1b894ee1f4bb6a2535a1a2c20d65 (diff) | |
download | busybox-w32-c5fe9f7b723f949457263ef8e22ab807d5b549ce.tar.gz busybox-w32-c5fe9f7b723f949457263ef8e22ab807d5b549ce.tar.bz2 busybox-w32-c5fe9f7b723f949457263ef8e22ab807d5b549ce.zip |
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 'networking/ntpd.c')
-rw-r--r-- | networking/ntpd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c index 72e9d0be2..5b92db6f6 100644 --- a/networking/ntpd.c +++ b/networking/ntpd.c | |||
@@ -46,6 +46,7 @@ | |||
46 | #include "libbb.h" | 46 | #include "libbb.h" |
47 | #include <math.h> | 47 | #include <math.h> |
48 | #include <netinet/ip.h> /* For IPTOS_LOWDELAY definition */ | 48 | #include <netinet/ip.h> /* For IPTOS_LOWDELAY definition */ |
49 | #include <sys/resource.h> /* setpriority */ | ||
49 | #include <sys/timex.h> | 50 | #include <sys/timex.h> |
50 | #ifndef IPTOS_LOWDELAY | 51 | #ifndef IPTOS_LOWDELAY |
51 | # define IPTOS_LOWDELAY 0x10 | 52 | # define IPTOS_LOWDELAY 0x10 |