summaryrefslogtreecommitdiffstats
path: root/libavutil/softfloat.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 /libavutil/softfloat.h
parent99545457bf1175d55e4eaa2c061dbf0faeb661ec (diff)
downloadffmpeg-streaming-699b3f99d0376a8fd5159bdad857228bda59cff6.zip
ffmpeg-streaming-699b3f99d0376a8fd5159bdad857228bda59cff6.tar.gz
add multiple inclusion guards to headers
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/softfloat.h')
-rw-r--r--libavutil/softfloat.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavutil/softfloat.h b/libavutil/softfloat.h
index 422c1b3..acf29b2 100644
--- a/libavutil/softfloat.h
+++ b/libavutil/softfloat.h
@@ -19,6 +19,9 @@
*
*/
+#ifndef AVUTIL_SOFTFLOAT_H
+#define AVUTIL_SOFTFLOAT_H
+
#include <stdint.h>
#define MIN_EXP -126
@@ -122,3 +125,5 @@ static inline int av_sf2int(SoftFloat v, int frac_bits){
if(v.exp >= 0) return v.mant << v.exp ;
else return v.mant >>(-v.exp);
}
+
+#endif
OpenPOWER on IntegriCloud