aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/busybox.h4
-rw-r--r--include/libbb.h6
-rw-r--r--include/unarchive.h2
3 files changed, 6 insertions, 6 deletions
diff --git a/include/busybox.h b/include/busybox.h
index ba4edcaba..f6f575957 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -17,7 +17,7 @@
17 * along with this program; if not, write to the Free Software 17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * 19 *
20 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell 20 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
21 * Permission has been granted to redistribute this code under the GPL. 21 * Permission has been granted to redistribute this code under the GPL.
22 * 22 *
23 */ 23 */
@@ -81,7 +81,7 @@ extern const struct BB_applet applets[];
81 * applet usage strings. These are all of the form: 81 * applet usage strings. These are all of the form:
82 * extern int foo_main(int argc, char **argv); 82 * extern int foo_main(int argc, char **argv);
83 * extern const char foo_usage[]; 83 * extern const char foo_usage[];
84 * These are all autogenerated from the set of currently defined applets. 84 * These are all autogenerated from the set of currently defined applets.
85 */ 85 */
86#define PROTOTYPES 86#define PROTOTYPES
87#include "applets.h" 87#include "applets.h"
diff --git a/include/libbb.h b/include/libbb.h
index 7814c4b8e..a01a0ca3e 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -17,7 +17,7 @@
17 * along with this program; if not, write to the Free Software 17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * 19 *
20 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell 20 * Based in part on code from sash, Copyright (c) 1999 by David I. Bell
21 * Permission has been granted to redistribute this code under the GPL. 21 * Permission has been granted to redistribute this code under the GPL.
22 * 22 *
23 */ 23 */
@@ -130,7 +130,7 @@ extern int get_kernel_revision(void);
130 130
131extern int get_console_fd(void); 131extern int get_console_fd(void);
132extern struct mntent *find_mount_point(const char *name, const char *table); 132extern struct mntent *find_mount_point(const char *name, const char *table);
133extern void write_mtab(char* blockDevice, char* directory, 133extern void write_mtab(char* blockDevice, char* directory,
134 char* filesystemType, long flags, char* string_flags); 134 char* filesystemType, long flags, char* string_flags);
135extern void erase_mtab(const char * name); 135extern void erase_mtab(const char * name);
136extern long *find_pid_by_name( const char* pidName); 136extern long *find_pid_by_name( const char* pidName);
@@ -276,7 +276,7 @@ enum {
276 MEGABYTE = (KILOBYTE*1024), 276 MEGABYTE = (KILOBYTE*1024),
277 GIGABYTE = (MEGABYTE*1024) 277 GIGABYTE = (MEGABYTE*1024)
278}; 278};
279const char *make_human_readable_str(unsigned long long size, 279const char *make_human_readable_str(unsigned long long size,
280 unsigned long block_size, unsigned long display_unit); 280 unsigned long block_size, unsigned long display_unit);
281 281
282int bb_ask_confirmation(void); 282int bb_ask_confirmation(void);
diff --git a/include/unarchive.h b/include/unarchive.h
index bbf11b557..1679b73ab 100644
--- a/include/unarchive.h
+++ b/include/unarchive.h
@@ -37,7 +37,7 @@ typedef struct archive_handle_s {
37 37
38 /* process the data component, e.g. extract to filesystem */ 38 /* process the data component, e.g. extract to filesystem */
39 void (*action_data)(struct archive_handle_s *); 39 void (*action_data)(struct archive_handle_s *);
40 40
41 /* How to process any sub archive, e.g. get_header_tar_gz */ 41 /* How to process any sub archive, e.g. get_header_tar_gz */
42 char (*action_data_subarchive)(struct archive_handle_s *); 42 char (*action_data_subarchive)(struct archive_handle_s *);
43 43