diff options
Diffstat (limited to 'include/busybox.h')
-rw-r--r-- | include/busybox.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/busybox.h b/include/busybox.h index ebbe759..8905b0d 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -72,9 +72,14 @@ extern const char *applet_name; #define RESERVE_BB_BUFFER(buffer,len) char buffer[len] #define RESERVE_BB_UBUFFER(buffer,len) unsigned char buffer[len] #else +#ifdef BB_FEATURE_BUFFERS_GO_IN_BSS +#define RESERVE_BB_BUFFER(buffer,len) static char buffer[len] +#define RESERVE_BB_UBUFFER(buffer,len) static unsigned char buffer[len] +#else #define RESERVE_BB_BUFFER(buffer,len) char *buffer=xmalloc(len) #define RESERVE_BB_UBUFFER(buffer,len) unsigned char *buffer=xmalloc(len) #endif +#endif /* Bit map related macros -- libc5 doens't provide these... sigh. */ |