From: Steve Holme Date: Sun, 30 Mar 2014 09:56:51 +0000 (+0100) Subject: imap-append.c: Fixed compilation errors on some platforms X-Git-Tag: curl-7_37_0~230 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0c4589f0c0d5a0e88cd628748f38488ee4090bfc;p=curl imap-append.c: Fixed compilation errors on some platforms In the initializer for len, there is no prototype for "strlen". In this statement, there is no prototype for "memcpy". --- diff --git a/docs/examples/imap-append.c b/docs/examples/imap-append.c index 8f0ebcb3b..fa531a8c5 100644 --- a/docs/examples/imap-append.c +++ b/docs/examples/imap-append.c @@ -20,6 +20,7 @@ * ***************************************************************************/ #include +#include #include /* This is a simple example showing how to send mail using libcurl's IMAP