changeset 998:8c83e3ff26cc

Added ifndef to prevent multiple header file inclusion.
author bertrand
date Mon, 04 Jun 2001 17:51:17 +0000
parents 647f5781d490
children 92833c9472e8
files stream.h
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/stream.h	Mon Jun 04 17:47:43 2001 +0000
+++ b/stream.h	Mon Jun 04 17:51:17 2001 +0000
@@ -1,3 +1,5 @@
+#ifndef __STREAM_H
+#define __STREAM_H
 
 #define STREAM_BUFFER_SIZE 2048
 
@@ -131,3 +133,5 @@
 stream_t* new_stream(int fd,int type);
 void free_stream(stream_t *s);
 
+
+#endif // __STREAM_H