diff options
Diffstat (limited to 'beecrypt/base64.c')
-rw-r--r-- | beecrypt/base64.c | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/beecrypt/base64.c b/beecrypt/base64.c index ea53453c1..15103eec7 100644 --- a/beecrypt/base64.c +++ b/beecrypt/base64.c @@ -25,28 +25,13 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "base64.h" +#include "debug.h" /*@unchecked@*/ static int _debug = 0; -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_STRING_H -# include <string.h> -#endif -#if HAVE_CTYPE_H -# include <ctype.h> -#endif -#if HAVE_UNISTD_H -# include <unistd.h> -#endif - -#include <stdio.h> - /*@unchecked@*/ /*@observer@*/ static const char* to_b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; |