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: upstream/7.37.1~405 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0c4589f0c0d5a0e88cd628748f38488ee4090bfc;p=platform%2Fupstream%2Fcurl.git 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 8f0ebcb..fa531a8 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