summaryrefslogtreecommitdiff
path: root/bsd-base64.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-01-02 22:29:16 +0000
committerEric S. Raymond <esr@thyrsus.com>2010-01-02 22:29:16 +0000
commitd5904b6b45850cc731d45ec81ff2294d0afe26ad (patch)
tree7c4a7359ac46d3a01475b203a17c03d634438e57 /bsd-base64.h
parentf46e4a8da378d9287824c7ce84ef296effaa3c94 (diff)
downloadgpsd-d5904b6b45850cc731d45ec81ff2294d0afe26ad.tar.gz
David Ludlow's housekeeping and type-cleanup patch.
All regression tests pass,
Diffstat (limited to 'bsd-base64.h')
-rw-r--r--bsd-base64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bsd-base64.h b/bsd-base64.h
index 44fc92cc..5e7d7ff3 100644
--- a/bsd-base64.h
+++ b/bsd-base64.h
@@ -4,9 +4,9 @@
#ifndef HAVE___B64_NTOP
# ifndef HAVE_B64_NTOP
-int b64_ntop(u_char const *src, size_t srclength, char *target,
+int b64_ntop(unsigned char const *src, size_t srclength, char *target,
size_t targsize);
-int b64_pton(char const *src, u_char *target, size_t targsize);
+int b64_pton(char const *src, unsigned char *target, size_t targsize);
# endif /* !HAVE_B64_NTOP */
# define __b64_ntop b64_ntop
# define __b64_pton b64_pton