usage.c: remove reference to busybox.h

*: s/include "busybox.h"/include "libbb.h"
This commit is contained in:
Denis Vlasenko
2007-05-26 19:00:18 +00:00
parent 5a6aeddfa7
commit b6adbf1be2
251 changed files with 270 additions and 269 deletions

View File

@ -9,7 +9,7 @@
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
*/
#include "busybox.h"
#include "libbb.h"
#include <stdio.h>
#include <errno.h>
#include <string.h>

View File

@ -7,7 +7,7 @@
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include "libbb.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

View File

@ -7,12 +7,10 @@
* Licensed under GPL v2 or later, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <getopt.h>
#include "libbb.h"
int readlink_main(int argc, char **argv);
int readlink_main(int argc, char **argv)
{

View File

@ -30,10 +30,10 @@
* -u MASK umask. Set the umask of the program executed to MASK.
*/
#include "busybox.h"
#include <getopt.h>
#include "libbb.h"
#if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS
static const struct option runparts_long_options[] = {
{ "arg", 1, NULL, 'a' },

View File

@ -8,10 +8,11 @@
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
#include "busybox.h"
#include <getopt.h>
#include <sys/resource.h>
#include "libbb.h"
static int signal_nr = 15;
static int user_id = -1;
static char *userspec;

View File

@ -10,7 +10,7 @@
* Based on which from debianutils
*/
#include "busybox.h"
#include "libbb.h"
int which_main(int argc, char **argv);
int which_main(int argc, char **argv)