diff options
author | Denis Vlasenko | 2006-11-01 09:13:26 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-01 09:13:26 +0000 |
commit | 966ec7c067d7a2df5232a69c8d3d2e777347a62d (patch) | |
tree | f2a42afd8064170c72634d65f7c4a3cf580f9b01 /libbb | |
parent | 31c65f24560f6980e3949a02f0b5e5e45c1a365d (diff) | |
download | busybox-966ec7c067d7a2df5232a69c8d3d2e777347a62d.zip busybox-966ec7c067d7a2df5232a69c8d3d2e777347a62d.tar.gz |
#if CONFIG_xxx -> #if ENABLE_xxx
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/md5.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/libbb/md5.c b/libbb/md5.c index 132efdf..e672559 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 <fcntl.h> -#include <limits.h> -#include <stdio.h> -#include <stdint.h> -#include <stdlib.h> -#include <string.h> -#include <unistd.h> - #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) |