diff options
author | Diego Biurrun | 2007-08-30 22:41:54 +0000 |
---|---|---|
committer | Diego Biurrun | 2007-08-30 22:41:54 +0000 |
commit | d8dfda7e511b85064b1a0faa589c97043c92cffa (patch) | |
tree | 392fc5bdb70c46e2dc16e3716f48e8149655d168 | |
parent | d9420d4df112abc4a3809900fb606b41d2bdfc7b (diff) |
Use a consistent multiple inclusion guard.
Originally committed as revision 10267 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/bfin/mathops.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/bfin/mathops.h b/libavcodec/bfin/mathops.h index eab4446caf..61966cf8c8 100644 --- a/libavcodec/bfin/mathops.h +++ b/libavcodec/bfin/mathops.h @@ -19,8 +19,8 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef MATHOPS_BFIN -#define MATHOPS_BFIN +#ifndef AVCODEC_BFIN_MATHOPS_H +#define AVCODEC_BFIN_MATHOPS_H #ifdef CONFIG_MPEGAUDIO_HP #define MULH(X,Y) ({ int xxo; \ @@ -49,4 +49,4 @@ : "=W" (xxo) : "d" (a), "d" (b)); \ xxo; }) -#endif +#endif /* AVCODEC_BFIN_MATHOPS_H */ |