aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-24 01:12:33 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-24 01:12:33 +0000
commitcd4f9331aab4c2f90ed068c3cc63bf73c465a70f (patch)
treeb298111f4ce0cbb7998dabb279d61247eb4eac19 /include
parent9fdce716fc69295019478dcff920628237dcb822 (diff)
downloadbusybox-w32-cd4f9331aab4c2f90ed068c3cc63bf73c465a70f.tar.gz
busybox-w32-cd4f9331aab4c2f90ed068c3cc63bf73c465a70f.tar.bz2
busybox-w32-cd4f9331aab4c2f90ed068c3cc63bf73c465a70f.zip
Move applet_name declaration from busybox.h to libbb.h.
git-svn-id: svn://busybox.net/trunk/busybox@2418 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r--include/busybox.h2
-rw-r--r--include/libbb.h2
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[];
66#include "applets.h" 66#include "applets.h"
67#undef PROTOTYPES 67#undef PROTOTYPES
68 68
69extern const char *applet_name;
70
71#ifdef BB_FEATURE_BUFFERS_GO_ON_STACK 69#ifdef BB_FEATURE_BUFFERS_GO_ON_STACK
72#define RESERVE_BB_BUFFER(buffer,len) char buffer[len] 70#define RESERVE_BB_BUFFER(buffer,len) char buffer[len]
73#define RESERVE_BB_UBUFFER(buffer,len) unsigned char buffer[len] 71#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 {
262 CP_INTERACTIVE = 16 262 CP_INTERACTIVE = 16
263}; 263};
264 264
265extern const char *applet_name;
266
265#endif /* __LIBBB_H__ */ 267#endif /* __LIBBB_H__ */