From 699b3f99d0376a8fd5159bdad857228bda59cff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sun, 17 Jun 2007 00:01:30 +0000 Subject: add multiple inclusion guards to headers Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/softfloat.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libavutil/softfloat.h') 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 #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 -- cgit v1.1