diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2014-05-14 18:41:34 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2014-05-14 18:41:34 +0000 |
commit | 65be028f32ed37dce84f6328d4a7172132c8c224 (patch) | |
tree | 4edff3f361b23a13a9807a3a0906f9026c3a81a5 /compat/b64_pton.c | |
parent | 04f3ab9612d73d7516f230df46e860daf892dc71 (diff) | |
download | src-65be028f32ed37dce84f6328d4a7172132c8c224.tar.gz src-65be028f32ed37dce84f6328d4a7172132c8c224.zip |
import ldns 1.6.17vendor/ldns/1.6.17
Notes
Notes:
svn path=/vendor/ldns/dist/; revision=266072
svn path=/vendor/ldns/1.6.17/; revision=266073; tag=vendor/ldns/1.6.17
Diffstat (limited to 'compat/b64_pton.c')
-rw-r--r-- | compat/b64_pton.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/compat/b64_pton.c b/compat/b64_pton.c index aa637d227549..abe32819e92d 100644 --- a/compat/b64_pton.c +++ b/compat/b64_pton.c @@ -40,27 +40,10 @@ * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. */ #include <ldns/config.h> - -#include <sys/types.h> -#include <sys/param.h> -#ifdef HAVE_SYS_SOCKET_H -#include <sys/socket.h> -#endif - -#ifdef HAVE_NETINET_IN_H -#include <netinet/in.h> -#endif -#ifdef HAVE_ARPA_INET_H -#include <arpa/inet.h> -#endif - #include <ctype.h> -#include <stdio.h> #include <stdlib.h> #include <string.h> -#define Assert(Cond) if (!(Cond)) abort() - static const char Base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; static const char Pad64 = '='; |