add multiple inclusion guards to headers

Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård
2007-06-17 00:01:30 +00:00
parent 99545457bf
commit 699b3f99d0
51 changed files with 248 additions and 0 deletions

View File

@ -25,6 +25,9 @@
* Range coder.
*/
#ifndef AVCODEC_RANGECODER_H
#define AVCODEC_RANGECODER_H
#include <stdint.h>
#include <assert.h>
#include "common.h"
@ -136,3 +139,4 @@ static inline int get_rac(RangeCoder *c, uint8_t * const state){
#endif
}
#endif