aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/busybox.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/busybox.h b/include/busybox.h
index e332ed412..fc5e8d874 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -88,7 +88,6 @@ extern const struct BB_applet applets[];
88#undef PROTOTYPES 88#undef PROTOTYPES
89 89
90extern const char *applet_name; 90extern const char *applet_name;
91extern int applet_name_compare(const void *x, const void *y);
92 91
93extern void usage(const char *usage) __attribute__ ((noreturn)); 92extern void usage(const char *usage) __attribute__ ((noreturn));
94extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); 93extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2)));
@@ -153,6 +152,7 @@ extern char *get_last_path_component(char *path);
153extern FILE *wfopen(const char *path, const char *mode); 152extern FILE *wfopen(const char *path, const char *mode);
154extern FILE *xfopen(const char *path, const char *mode); 153extern FILE *xfopen(const char *path, const char *mode);
155extern void chomp(char *s); 154extern void chomp(char *s);
155extern struct BB_applet *find_applet_by_name(const char *name);
156 156
157#ifndef DMALLOC 157#ifndef DMALLOC
158extern void *xmalloc (size_t size); 158extern void *xmalloc (size_t size);