diff nut.h @ 2172:92f61ed53965 libavformat

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 3804e39efbfd
children f6021da48f21
line wrap: on
line diff
--- a/nut.h	Sat Jun 16 22:59:13 2007 +0000
+++ b/nut.h	Sun Jun 17 00:01:30 2007 +0000
@@ -20,6 +20,9 @@
  *
  */
 
+#ifndef AVFORMAT_NUT_H
+#define AVFORMAT_NUT_H
+
 //#include <limits.h>
 #include "avformat.h"
 #include "crc.h"
@@ -95,3 +98,5 @@
 static unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len){
     return av_crc(av_crc04C11DB7, checksum, buf, len);
 }
+
+#endif