1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

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".
This commit is contained in:
Steve Holme 2014-03-30 10:56:51 +01:00
parent 54ef196db8
commit 0c4589f0c0

View File

@ -20,6 +20,7 @@
* *
***************************************************************************/ ***************************************************************************/
#include <stdio.h> #include <stdio.h>
#include <string.h>
#include <curl/curl.h> #include <curl/curl.h>
/* This is a simple example showing how to send mail using libcurl's IMAP /* This is a simple example showing how to send mail using libcurl's IMAP