From b7300840e0285239351e33fa613898fbb079efd7 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 23 Dec 2011 16:24:52 +0100 Subject: [PATCH] crypt: build fix. define ARRAY_SIZE macro Signed-off-by: Natanael Copa --- libcrypt/crypt.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/libcrypt/crypt.c b/libcrypt/crypt.c index 188a6a0..19f14d9 100644 --- a/libcrypt/crypt.c +++ b/libcrypt/crypt.c @@ -12,6 +12,8 @@ #include #include "libcrypt.h" +#define ARRAY_SIZE(v) (sizeof(v) / sizeof((v)[0])) + typedef char *(*crypt_impl_f)(const unsigned char *pw, const unsigned char *salt); static const struct { -- 1.7.8