summaryrefslogtreecommitdiff
path: root/libavformat/nut.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-06-17 00:01:30 +0000
committerMåns Rullgård <mans@mansr.com>2007-06-17 00:01:30 +0000
commit699b3f99d0376a8fd5159bdad857228bda59cff6 (patch)
tree5df6def799acb5cb1a19d85e770ceafdc4d088a4 /libavformat/nut.h
parent99545457bf1175d55e4eaa2c061dbf0faeb661ec (diff)
add multiple inclusion guards to headers
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.h')
-rw-r--r--libavformat/nut.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/nut.h b/libavformat/nut.h
index 1a4473789c..b18ac2dc0d 100644
--- a/libavformat/nut.h
+++ b/libavformat/nut.h
@@ -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 @@ typedef struct {
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