diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2011-07-22 10:49:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2011-07-22 10:49:33 +0000 |
commit | 20134fa9f4401aecc09b38e7733385868e2837c5 (patch) | |
tree | 16b13b1be2e8264656e7a861df41fcf3af88c991 /compat.h | |
parent | 1f01dd8c0a33804a322e11fca4b00c89528aa92e (diff) | |
download | rtmux-20134fa9f4401aecc09b38e7733385868e2837c5.tar.gz rtmux-20134fa9f4401aecc09b38e7733385868e2837c5.tar.bz2 rtmux-20134fa9f4401aecc09b38e7733385868e2837c5.zip |
Compatibility for b64_ntop, missing from some alternative libc.
Diffstat (limited to 'compat.h')
-rw-r--r-- | compat.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -196,6 +196,11 @@ size_t strlcat(char *, const char *, size_t); int daemon(int, int); #endif +#ifndef HAVE_B64NTOP +/* b64_ntop.c */ +int b64_ntop(const char *, size_t, char *, size_t); +#endif + #ifndef HAVE_FORKPTY /* forkpty.c */ #include <sys/ioctl.h> |