diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2001-08-24 07:39:50 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-24 07:39:50 +0000 |
| commit | d5112c0dec32d6191c60f1984c06f3a5362293e7 (patch) | |
| tree | 431669c1cf50fe61921da90e4b1cbc6b3ce3ebb5 | |
| parent | aace68c91bc687345e4baa32814bce2d0f1e9f60 (diff) | |
include setup.h properly, not config.h
| -rw-r--r-- | lib/base64.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/base64.c b/lib/base64.c index 4ffd7605b..6ff6b955a 100644 --- a/lib/base64.c +++ b/lib/base64.c @@ -32,9 +32,8 @@ * This code will break if int is smaller than 32 bits */ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif +#include "setup.h" + #include <stdlib.h> #include <string.h> |
