diff options
author | Matt Kraai <kraai@debian.org> | 2001-04-24 01:12:33 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-04-24 01:12:33 +0000 |
commit | 9ff9325e60eac6cc119eab5dff0dbbba78edfd32 (patch) | |
tree | b298111f4ce0cbb7998dabb279d61247eb4eac19 /include | |
parent | af030496fae5c4ad24770be8a850b244286ba608 (diff) | |
download | busybox-9ff9325e60eac6cc119eab5dff0dbbba78edfd32.tar.gz |
Move applet_name declaration from busybox.h to libbb.h.
Diffstat (limited to 'include')
-rw-r--r-- | include/busybox.h | 2 | ||||
-rw-r--r-- | include/libbb.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/busybox.h b/include/busybox.h index 8905b0dbd..e8055b06c 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -66,8 +66,6 @@ extern const struct BB_applet applets[]; #include "applets.h" #undef PROTOTYPES -extern const char *applet_name; - #ifdef BB_FEATURE_BUFFERS_GO_ON_STACK #define RESERVE_BB_BUFFER(buffer,len) char buffer[len] #define RESERVE_BB_UBUFFER(buffer,len) unsigned char buffer[len] diff --git a/include/libbb.h b/include/libbb.h index c47a6689e..4eeb99343 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -262,4 +262,6 @@ enum { CP_INTERACTIVE = 16 }; +extern const char *applet_name; + #endif /* __LIBBB_H__ */ |