diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-05-15 16:11:50 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-05-15 16:11:50 +0000 |
commit | 84fa3d69f360c87fce4efe6acb128ad78d3647e2 (patch) | |
tree | 4afd09aaf7a61fbe34f56270b027b4ba7fd70de2 /stream | |
parent | 26166492dc652a9f88dacbdc863a00213cb697bd (diff) | |
download | mpv-84fa3d69f360c87fce4efe6acb128ad78d3647e2.tar.bz2 mpv-84fa3d69f360c87fce4efe6acb128ad78d3647e2.tar.xz |
Add missing stream.h #include, fixes the warning:
stream/tcp.c:197: warning: implicit declaration of function 'stream_check_interrupt'
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26783 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r-- | stream/tcp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stream/tcp.c b/stream/tcp.c index 769a8669d8..d822d95107 100644 --- a/stream/tcp.c +++ b/stream/tcp.c @@ -31,6 +31,7 @@ #include <ws2tcpip.h> #endif +#include "stream.h" #include "tcp.h" /* IPv6 options */ |