cosmetic fixes, no code changed

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2010-04-03 15:39:47 +02:00
parent 4a1884da53
commit ccd1efc3c1
3 changed files with 15 additions and 16 deletions

View File

@ -5,8 +5,7 @@
* *
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details. * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/ */
#include "libbb.h"
#include <libbb.h>
/* returns a set with the flags not printed */ /* returns a set with the flags not printed */
int FAST_FUNC print_flags_separated(const int *masks, const char *labels, int flags, const char *separator) int FAST_FUNC print_flags_separated(const int *masks, const char *labels, int flags, const char *separator)

View File

@ -1,12 +1,12 @@
/* vi: set sw=4 ts=4: */ /* vi: set sw=4 ts=4: */
/* /*
* lspci implementation for busybox * lspci implementation for busybox
* *
* Copyright (C) 2009 Malek Degachi <malek-degachi@laposte.net> * Copyright (C) 2009 Malek Degachi <malek-degachi@laposte.net>
* *
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball. * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
*/ */
#include <libbb.h> #include "libbb.h"
enum { enum {
OPT_m = (1 << 0), OPT_m = (1 << 0),

View File

@ -1,12 +1,12 @@
/* vi: set sw=4 ts=4: */ /* vi: set sw=4 ts=4: */
/* /*
* lspci implementation for busybox * lsusb implementation for busybox
* *
* Copyright (C) 2009 Malek Degachi <malek-degachi@laposte.net> * Copyright (C) 2009 Malek Degachi <malek-degachi@laposte.net>
* *
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball. * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
*/ */
#include <libbb.h> #include "libbb.h"
static int FAST_FUNC fileAction( static int FAST_FUNC fileAction(
const char *fileName, const char *fileName,