# HG changeset patch # User diego # Date 1215505239 0 # Node ID 747d3f6fbe815f15978dfcd10cddda1315a978fe # Parent 46e21b0705c809dff85ad98977a3641d1187f14c Add missing #include , fixes the warnings: stream/librtsp/rtsp.c: In function 'write_stream': stream/librtsp/rtsp.c:68: warning: implicit declaration of function 'send' stream/librtsp/rtsp.c: In function 'read_stream': stream/librtsp/rtsp.c:95: warning: implicit declaration of function 'recv' diff -r 46e21b0705c8 -r 747d3f6fbe81 stream/librtsp/rtsp.c --- a/stream/librtsp/rtsp.c Tue Jul 08 08:17:50 2008 +0000 +++ b/stream/librtsp/rtsp.c Tue Jul 08 08:20:39 2008 +0000 @@ -41,6 +41,7 @@ #include #include #include +#include #include #ifdef HAVE_WINSOCK2 #include