diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-03 16:39:31 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-03 16:39:31 +0000 |
commit | 421d9e59416850968707dfec7a665cb0211b8d1c (patch) | |
tree | cee92b2a5cd0ea7298aab569ed944fdeb59dbdf2 /libbb/xgetlarg.c | |
parent | 101a470068a62a70489797a3fdfa5084af80106e (diff) | |
download | busybox-w32-421d9e59416850968707dfec7a665cb0211b8d1c.tar.gz busybox-w32-421d9e59416850968707dfec7a665cb0211b8d1c.tar.bz2 busybox-w32-421d9e59416850968707dfec7a665cb0211b8d1c.zip |
- move buffer allocation schemes to libbb.h
- include the correct headers: applets need busybox.h while lib* need libbb.h
Diffstat (limited to 'libbb/xgetlarg.c')
-rw-r--r-- | libbb/xgetlarg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libbb/xgetlarg.c b/libbb/xgetlarg.c index 6d3c4d1db..893cd2813 100644 --- a/libbb/xgetlarg.c +++ b/libbb/xgetlarg.c | |||
@@ -1,6 +1,8 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * Copyright (C) 2003-2004 Erik Andersen <andersen@codepoet.org> | 3 | * Copyright (C) 2003-2004 Erik Andersen <andersen@codepoet.org> |
4 | * | ||
5 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | ||
4 | */ | 6 | */ |
5 | 7 | ||
6 | 8 | ||
@@ -11,7 +13,7 @@ | |||
11 | #include <assert.h> | 13 | #include <assert.h> |
12 | #include <ctype.h> | 14 | #include <ctype.h> |
13 | 15 | ||
14 | #include "busybox.h" | 16 | #include "libbb.h" |
15 | 17 | ||
16 | long bb_xgetlarg(const char *arg, int base, long lower, long upper) | 18 | long bb_xgetlarg(const char *arg, int base, long lower, long upper) |
17 | { | 19 | { |