- move buffer allocation schemes to libbb.h

- include the correct headers: applets need busybox.h while lib* need libbb.h
This commit is contained in:
Bernhard Reutner-Fischer
2006-04-03 16:39:31 +00:00
parent 101a470068
commit 421d9e5941
18 changed files with 47 additions and 109 deletions

View File

@@ -1,6 +1,8 @@
/* vi: set sw=4 ts=4: */
/*
* Copyright (C) 2003-2004 Erik Andersen <andersen@codepoet.org>
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
@@ -11,7 +13,7 @@
#include <assert.h>
#include <ctype.h>
#include "busybox.h"
#include "libbb.h"
long bb_xgetlarg(const char *arg, int base, long lower, long upper)
{