- Cleanup of bsd-base64 headers, bugfix definitions of __b64_*. Reported

by Andre Lucas <andre.lucas@dial.pipex.com>
This commit is contained in:
Damien Miller 2000-05-09 15:28:41 +10:00
Родитель 2a44f8938d
Коммит 75edac3366
3 изменённых файлов: 8 добавлений и 12 удалений

Просмотреть файл

@ -44,7 +44,7 @@
#include "config.h"
#ifndef HAVE_B64_NTOP
#if !defined(HAVE_B64_NTOP) && !defined(HAVE___B64_NTOP)
#include <sys/types.h>
#include <sys/param.h>
@ -53,12 +53,13 @@
#include <arpa/inet.h>
#include <ctype.h>
#include <resolv.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "bsd-base64.h"
#define Assert(Cond) if (!(Cond)) abort()
static const char Base64[] =
@ -312,4 +313,4 @@ b64_pton(char const *src, u_char *target, size_t targsize)
return (tarindex);
}
#endif /* HAVE_B64_NTOP */
#endif /* !defined(HAVE_B64_NTOP) && !defined(HAVE___B64_NTOP) */

Просмотреть файл

@ -4,16 +4,13 @@
#include "config.h"
#ifndef HAVE___B64_NTOP
# ifdef HAVE_B64_NTOP
# define __b64_ntop b64_ntop
# define __b64_pton b64_pton
# else /* !HAVE_B64_NTOP */
# ifndef HAVE_B64_NTOP
int b64_ntop(u_char const *src, size_t srclength, char *target,
size_t targsize);
int b64_pton(char const *src, u_char *target, size_t targsize);
# endif /* HAVE_B64_NTOP */
# endif /* !HAVE_B64_NTOP */
# define __b64_ntop b64_ntop
# define __b64_pton b64_pton
#endif /* HAVE___B64_NTOP */
#endif /* _BSD_BINRESVPORT_H */

Просмотреть файл

@ -4,8 +4,6 @@
#include "includes.h"
#include "xmalloc.h"
#include <resolv.h>
int
uuencode(unsigned char *src, unsigned int srclength,
char *target, size_t targsize)