aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordwhedon <dwhedon@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-23 03:55:24 +0000
committerdwhedon <dwhedon@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-23 03:55:24 +0000
commit3881b731ef7a5c1e1413f61582a372756728189c (patch)
tree3df2910ef67bde14cedd8c84c99969bf9bb2a3fe
parent7348995d565fe23369cbe6a3389b1fd4cb9ebeb4 (diff)
downloadbusybox-w32-3881b731ef7a5c1e1413f61582a372756728189c.tar.gz
busybox-w32-3881b731ef7a5c1e1413f61582a372756728189c.tar.bz2
busybox-w32-3881b731ef7a5c1e1413f61582a372756728189c.zip
utility.c must include stdarg.h
git-svn-id: svn://busybox.net/trunk/busybox@1904 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--utility.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/utility.c b/utility.c
index 78487b953..e3535966f 100644
--- a/utility.c
+++ b/utility.c
@@ -36,6 +36,7 @@
36#include <ctype.h> 36#include <ctype.h>
37#include <stdlib.h> 37#include <stdlib.h>
38#include <limits.h> 38#include <limits.h>
39#include <stdarg.h>
39#include <sys/ioctl.h> 40#include <sys/ioctl.h>
40#include <sys/utsname.h> /* for uname(2) */ 41#include <sys/utsname.h> /* for uname(2) */
41 42