From: simon Date: Sun, 6 May 2012 19:31:24 +0000 (+0000) Subject: Missing #include. X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/utils/commitdiff_plain/80e59395e22a8b281706d4c25a71f0f77442522b Missing #include. git-svn-id: svn://svn.tartarus.org/sgt/utils@9506 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/base64/base64.c b/base64/base64.c index 52d8a12..0a17a16 100644 --- a/base64/base64.c +++ b/base64/base64.c @@ -2,6 +2,7 @@ #include #include #include +#include #define isbase64(c) ( ((c) >= 'A' && (c) <= 'Z') || \ ((c) >= 'a' && (c) <= 'z') || \