diff options
author | Eric Andersen | 2003-10-22 10:26:38 +0000 |
---|---|---|
committer | Eric Andersen | 2003-10-22 10:26:38 +0000 |
commit | 9ef6c93090359bc13eab29450b21c573d09ec5bb (patch) | |
tree | ec9c781c5a26fa186f516fcda4cfea94d80fb23a /libbb | |
parent | 976a55e168933f07294d0da3a0d00046a7f307e4 (diff) | |
download | busybox-9ef6c93090359bc13eab29450b21c573d09ec5bb.zip busybox-9ef6c93090359bc13eab29450b21c573d09ec5bb.tar.gz |
Patch from Arthur Othieno to fix a compiler warning
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/get_ug_id.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/get_ug_id.c b/libbb/get_ug_id.c index 24ed136..b0b9b2e 100644 --- a/libbb/get_ug_id.c +++ b/libbb/get_ug_id.c @@ -14,6 +14,8 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include <stdlib.h> + extern unsigned long get_ug_id(const char *s, long (*my_getxxnam)(const char *)) { unsigned long r; |