aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-24 15:38:03 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-24 15:38:03 +0000
commitd398ecab9d6e42b1091d214df50bf938030d11a2 (patch)
tree222947a9a358931ea4f4f33679fd336cb5f36a8f /libbb
parent8023d7df788fbc45217473e6a290d4409881d2cd (diff)
downloadbusybox-w32-d398ecab9d6e42b1091d214df50bf938030d11a2.tar.gz
busybox-w32-d398ecab9d6e42b1091d214df50bf938030d11a2.tar.bz2
busybox-w32-d398ecab9d6e42b1091d214df50bf938030d11a2.zip
hunt down improper include <>, make mkswap output 4Gb+ friendly
Diffstat (limited to 'libbb')
-rw-r--r--libbb/fclose_nonstdin.c3
-rw-r--r--libbb/perror_nomsg.c3
-rw-r--r--libbb/warn_ignoring_args.c2
3 files changed, 3 insertions, 5 deletions
diff --git a/libbb/fclose_nonstdin.c b/libbb/fclose_nonstdin.c
index 951ab30d6..88e8474f2 100644
--- a/libbb/fclose_nonstdin.c
+++ b/libbb/fclose_nonstdin.c
@@ -12,8 +12,7 @@
12 * here to save a little space. 12 * here to save a little space.
13 */ 13 */
14 14
15#include <stdio.h> 15#include "libbb.h"
16#include <libbb.h>
17 16
18int fclose_if_not_stdin(FILE *f) 17int fclose_if_not_stdin(FILE *f)
19{ 18{
diff --git a/libbb/perror_nomsg.c b/libbb/perror_nomsg.c
index 3a5079b99..3aefd5301 100644
--- a/libbb/perror_nomsg.c
+++ b/libbb/perror_nomsg.c
@@ -7,8 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */ 8 */
9 9
10#include <stddef.h> 10#include "libbb.h"
11#include <libbb.h>
12 11
13void bb_perror_nomsg(void) 12void bb_perror_nomsg(void)
14{ 13{
diff --git a/libbb/warn_ignoring_args.c b/libbb/warn_ignoring_args.c
index 6405ff826..be78a4414 100644
--- a/libbb/warn_ignoring_args.c
+++ b/libbb/warn_ignoring_args.c
@@ -7,7 +7,7 @@
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 */ 8 */
9 9
10#include <libbb.h> 10#include "libbb.h"
11 11
12void bb_warn_ignoring_args(int n) 12void bb_warn_ignoring_args(int n)
13{ 13{