summaryrefslogtreecommitdiff
path: root/openbsd-compat/base64.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-15 13:57:51 +1000
committerDamien Miller <djm@mindrot.org>2003-05-15 13:57:51 +1000
commitffda4cb2181683af35a4aee85c00d83ed9b7f11c (patch)
treed0535c8f30304dd99c8a9aae644de0d2817c6631 /openbsd-compat/base64.h
parent34bb56743a0c8777ec2527e6f5be2f97dd61eb24 (diff)
- (djm) Avoid uuencode.c warnings
Diffstat (limited to 'openbsd-compat/base64.h')
-rw-r--r--openbsd-compat/base64.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsd-compat/base64.h b/openbsd-compat/base64.h
index 72db3ffc7..a25003016 100644
--- a/openbsd-compat/base64.h
+++ b/openbsd-compat/base64.h
@@ -1,4 +1,4 @@
1/* $Id: base64.h,v 1.4 2003/02/24 04:45:43 djm Exp $ */ 1/* $Id: base64.h,v 1.5 2003/05/15 03:57:51 djm Exp $ */
2 2
3#ifndef _BSD_BASE64_H 3#ifndef _BSD_BASE64_H
4#define _BSD_BASE64_H 4#define _BSD_BASE64_H
@@ -10,14 +10,14 @@
10int b64_ntop(u_char const *src, size_t srclength, char *target, 10int b64_ntop(u_char const *src, size_t srclength, char *target,
11 size_t targsize); 11 size_t targsize);
12# endif /* !HAVE_B64_NTOP */ 12# endif /* !HAVE_B64_NTOP */
13# define __b64_ntop b64_ntop 13# define __b64_ntop(a,b,c,d) b64_ntop(a,b,c,d)
14#endif /* HAVE___B64_NTOP */ 14#endif /* HAVE___B64_NTOP */
15 15
16#ifndef HAVE___B64_PTON 16#ifndef HAVE___B64_PTON
17# ifndef HAVE_B64_PTON 17# ifndef HAVE_B64_PTON
18int b64_pton(char const *src, u_char *target, size_t targsize); 18int b64_pton(char const *src, u_char *target, size_t targsize);
19# endif /* !HAVE_B64_PTON */ 19# endif /* !HAVE_B64_PTON */
20# define __b64_pton b64_pton 20# define __b64_pton(a,b,c) b64_pton(a,b,c)
21#endif /* HAVE___B64_PTON */ 21#endif /* HAVE___B64_PTON */
22 22
23#endif /* _BSD_BASE64_H */ 23#endif /* _BSD_BASE64_H */