summaryrefslogtreecommitdiffstats
path: root/stream/udp.h
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-05 09:24:07 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-05 09:24:07 +0000
commit105438642b3553efd46411f7dbeef17c6aed67a1 (patch)
tree604b9d25304e49e4181949b63b05445317eacbc8 /stream/udp.h
parent5a85fcf1d890ecefb71164302aedd9e1beb5d400 (diff)
downloadmpv-105438642b3553efd46411f7dbeef17c6aed67a1.tar.bz2
mpv-105438642b3553efd46411f7dbeef17c6aed67a1.tar.xz
missing ifndef/define/endif couple in udp header
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19338 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/udp.h')
-rw-r--r--stream/udp.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/stream/udp.h b/stream/udp.h
index 5bac18bbca..b908ea4fd1 100644
--- a/stream/udp.h
+++ b/stream/udp.h
@@ -17,4 +17,9 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#ifndef _UDP_H_
+#define _UDP_H_
+
int udp_open_socket (URL_t *url);
+
+#endif /* _UDP_H_ */