diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-11-21 01:47:02 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-11-21 01:47:02 +0000 |
commit | c90e3485795f561e38cd67f64892a37788fa14dc (patch) | |
tree | 10b993651961962d1ee73ee8823bb6dc093a1ce9 /docs/examples/http2-upload.c | |
parent | f024ece8c719c8f943ffec8e405eabbd1178446f (diff) | |
download | curl-c90e3485795f561e38cd67f64892a37788fa14dc.tar.gz |
examples: Fixed compilation warnings
pop3-multi.c:96:5: warning: implicit declaration of function 'memset'
imap-multi.c:96:5: warning: implicit declaration of function 'memset'
http2-download.c:226:5: warning: implicit declaration of function 'memset'
http2-upload.c:290:5: warning: implicit declaration of function 'memset'
http2-upload.c:290:5: warning: implicit declaration of function 'memset'
Diffstat (limited to 'docs/examples/http2-upload.c')
-rw-r--r-- | docs/examples/http2-upload.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/examples/http2-upload.c b/docs/examples/http2-upload.c index 2ec55059a..cc9883b55 100644 --- a/docs/examples/http2-upload.c +++ b/docs/examples/http2-upload.c @@ -25,6 +25,7 @@ */ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <fcntl.h> #include <sys/stat.h> |