From: simon Date: Thu, 30 Oct 2008 19:19:41 +0000 (+0000) Subject: Compiling on a different Linux distribution has brought this code X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/utils/commitdiff_plain/6b7a3adf6a3a2641b44b74cdb79d9d248b2b09dc Compiling on a different Linux distribution has brought this code into contact with a compiler picky enough to point out that I called exit() without including stdlib.h. Surprised nothing's complained about that one before, actually. git-svn-id: svn://svn.tartarus.org/sgt/utils@8227 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/base64/base64.c b/base64/base64.c index 1c3d39e..52d8a12 100644 --- a/base64/base64.c +++ b/base64/base64.c @@ -1,6 +1,7 @@ #include #include #include +#include #define isbase64(c) ( ((c) >= 'A' && (c) <= 'Z') || \ ((c) >= 'a' && (c) <= 'z') || \