diff options
author | Yang Tse <yangsita@gmail.com> | 2010-06-02 14:13:02 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-06-02 14:13:02 +0200 |
commit | 077125e4a2a77384c88b51ffd88c985cabf95193 (patch) | |
tree | 99a42d6286462e74c3af8a21b896c503b01a95b3 /lib/curl_rtmp.c | |
parent | df06182d867eaf80c006765a1601b9fcff5e8465 (diff) | |
download | curl-077125e4a2a77384c88b51ffd88c985cabf95193.tar.gz |
include libcurl standard internal headers
Diffstat (limited to 'lib/curl_rtmp.c')
-rw-r--r-- | lib/curl_rtmp.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/curl_rtmp.c b/lib/curl_rtmp.c index 21a67f5ce..df30dc1f6 100644 --- a/lib/curl_rtmp.c +++ b/lib/curl_rtmp.c @@ -31,6 +31,13 @@ #include <curl/curl.h> #include <librtmp/rtmp.h> +#define _MPRINTF_REPLACE /* use our functions only */ +#include <curl/mprintf.h> + +#include "curl_memory.h" +/* The last #include file should be: */ +#include "memdebug.h" + #ifdef _WIN32 #define setsockopt(a,b,c,d,e) (setsockopt)(a,b,c,(const char *)d,(int)e) #define SET_RCVTIMEO(tv,s) int tv = s*1000 |