aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-10-06 15:18:09 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-10-06 15:18:09 +0000
commitba248206fe50b4b905e220cdb68f4959593c17e7 (patch)
tree04d3f095436c25870280cb70a55d6bb8ee3f517f
parent664c6e7ea0ed6c78ed84e4055532e9d32e38731b (diff)
downloadbusybox-w32-ba248206fe50b4b905e220cdb68f4959593c17e7.tar.gz
busybox-w32-ba248206fe50b4b905e220cdb68f4959593c17e7.tar.bz2
busybox-w32-ba248206fe50b4b905e220cdb68f4959593c17e7.zip
change strange depend to libbb.h, but require busybox.h
-rw-r--r--coreutils/uudecode.c3
-rw-r--r--debianutils/run_parts.c2
-rw-r--r--editors/patch.c1
-rw-r--r--init/mesg.c2
4 files changed, 3 insertions, 5 deletions
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c
index 6167c9fad..b4bcc72e2 100644
--- a/coreutils/uudecode.c
+++ b/coreutils/uudecode.c
@@ -27,8 +27,7 @@
27#include <getopt.h> /* optind */ 27#include <getopt.h> /* optind */
28#include <string.h> 28#include <string.h>
29#include <stdlib.h> 29#include <stdlib.h>
30 30#include "busybox.h"
31#include "libbb.h"
32 31
33static int read_stduu(FILE *src_stream, FILE *dst_stream) 32static int read_stduu(FILE *src_stream, FILE *dst_stream)
34{ 33{
diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c
index 6205595bf..90314354c 100644
--- a/debianutils/run_parts.c
+++ b/debianutils/run_parts.c
@@ -52,7 +52,7 @@
52#include <getopt.h> 52#include <getopt.h>
53#include <stdlib.h> 53#include <stdlib.h>
54 54
55#include "libbb.h" 55#include "busybox.h"
56 56
57static const struct option runparts_long_options[] = { 57static const struct option runparts_long_options[] = {
58 { "test", 0, NULL, 't' }, 58 { "test", 0, NULL, 't' },
diff --git a/editors/patch.c b/editors/patch.c
index 59b70210f..980c37f40 100644
--- a/editors/patch.c
+++ b/editors/patch.c
@@ -39,7 +39,6 @@
39#include <stdlib.h> 39#include <stdlib.h>
40#include <unistd.h> 40#include <unistd.h>
41#include "busybox.h" 41#include "busybox.h"
42#include "libbb.h"
43 42
44static int copy_lines(FILE *src_stream, FILE *dest_stream, const unsigned int lines_count) 43static int copy_lines(FILE *src_stream, FILE *dest_stream, const unsigned int lines_count)
45{ 44{
diff --git a/init/mesg.c b/init/mesg.c
index 7fd9d24ae..f1cbe7ea0 100644
--- a/init/mesg.c
+++ b/init/mesg.c
@@ -20,7 +20,7 @@
20 20
21#include <unistd.h> 21#include <unistd.h>
22#include <stdlib.h> 22#include <stdlib.h>
23#include "libbb.h" 23#include "busybox.h"
24 24
25#ifdef USE_TTY_GROUP 25#ifdef USE_TTY_GROUP
26#define S_IWGRP_OR_S_IWOTH S_IWGRP 26#define S_IWGRP_OR_S_IWOTH S_IWGRP