From 3c5559e22b485a9bb371a70e3b123e223d7899f0 Mon Sep 17 00:00:00 2001 From: vda Date: Wed, 1 Nov 2006 09:13:26 +0000 Subject: #if CONFIG_xxx -> #if ENABLE_xxx git-svn-id: svn://busybox.net/trunk/busybox@16483 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- libbb/md5.c | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'libbb') diff --git a/libbb/md5.c b/libbb/md5.c index 132efdf93..e672559cf 100644 --- a/libbb/md5.c +++ b/libbb/md5.c @@ -13,21 +13,13 @@ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */ -#include -#include -#include -#include -#include -#include -#include - #include "libbb.h" -# if CONFIG_MD5_SIZE_VS_SPEED < 0 || CONFIG_MD5_SIZE_VS_SPEED > 3 +#if CONFIG_MD5_SIZE_VS_SPEED < 0 || CONFIG_MD5_SIZE_VS_SPEED > 3 # define MD5_SIZE_VS_SPEED 2 -# else +#else # define MD5_SIZE_VS_SPEED CONFIG_MD5_SIZE_VS_SPEED -# endif +#endif /* Initialize structure containing state of computation. * (RFC 1321, 3.3: Step 3) -- cgit v1.2.3-55-g6feb