diff stream/http.h @ 23689:3f0d00abc073

Do not use leading underscores in multiple inclusion guards, they are reserved.
author diego
date Mon, 02 Jul 2007 22:34:45 +0000
parents 64d82a45a05d
children 4129c8cfa742
line wrap: on
line diff
--- a/stream/http.h	Mon Jul 02 22:02:59 2007 +0000
+++ b/stream/http.h	Mon Jul 02 22:34:45 2007 +0000
@@ -4,8 +4,8 @@
  * (C) 2001, MPlayer team.
  */
 
-#ifndef __HTTP_H
-#define __HTTP_H
+#ifndef HTTP_H
+#define HTTP_H
 
 typedef struct HTTP_field_type {
 	char *field_name;
@@ -49,4 +49,4 @@
 void		http_debug_hdr( HTTP_header_t *http_hdr );
 
 int 		base64_encode(const void *enc, int encLen, char *out, int outMax);
-#endif // __HTTP_H
+#endif /* HTTP_H */