diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-19 16:07:28 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-19 16:07:28 +0200 |
commit | 36df04837ad54a4eb559e5c69a81aeeb4d981a72 (patch) | |
tree | 3685f248b18cbab68ad7a8dd5625932a2adab361 /shell | |
parent | 3b3ccdc5bc530e824a55ebc8d57c34f0ca6a30c9 (diff) | |
download | busybox-36df04837ad54a4eb559e5c69a81aeeb4d981a72.tar.gz |
randomconfig fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index d81dbd3f5..481b84138 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -53,6 +53,8 @@ #include "math.h" #if ENABLE_ASH_RANDOM_SUPPORT # include "random.h" +#else +# define CLEAR_RANDOM_T(rnd) ((void)0) #endif #if defined SINGLE_APPLET_MAIN |