summaryrefslogtreecommitdiffstats
path: root/stream.h
diff options
context:
space:
mode:
authorbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-04 17:51:17 +0000
committerbertrand <bertrand@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-04 17:51:17 +0000
commit98e6e286b95c4166390e68dd025e17037d6208c0 (patch)
treeb915b6415481fab91cadacb84456aac9553d72d3 /stream.h
parent4b793fee5eec3d5cb98dcadc0809338876f55e88 (diff)
downloadmpv-98e6e286b95c4166390e68dd025e17037d6208c0.tar.bz2
mpv-98e6e286b95c4166390e68dd025e17037d6208c0.tar.xz
Added ifndef to prevent multiple header file inclusion.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@999 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream.h')
-rw-r--r--stream.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/stream.h b/stream.h
index af4962d4ad..0a1882e2a0 100644
--- a/stream.h
+++ b/stream.h
@@ -1,3 +1,5 @@
+#ifndef __STREAM_H
+#define __STREAM_H
#define STREAM_BUFFER_SIZE 2048
@@ -131,3 +133,5 @@ void stream_reset(stream_t *s);
stream_t* new_stream(int fd,int type);
void free_stream(stream_t *s);
+
+#endif // __STREAM_H