Browse code

Use a consistent multiple inclusion guard.

Originally committed as revision 10267 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Biurrun authored on 2007/08/31 07:41:54
Showing 1 changed files
... ...
@@ -19,8 +19,8 @@
19 19
  * License along with FFmpeg; if not, write to the Free Software
20 20
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 21
  */
22
-#ifndef MATHOPS_BFIN
23
-#define MATHOPS_BFIN
22
+#ifndef AVCODEC_BFIN_MATHOPS_H
23
+#define AVCODEC_BFIN_MATHOPS_H
24 24
 
25 25
 #ifdef CONFIG_MPEGAUDIO_HP
26 26
 #define MULH(X,Y) ({ int xxo;                           \
... ...
@@ -49,4 +49,4 @@
49 49
        : "=W" (xxo) : "d" (a), "d" (b));                \
50 50
     xxo; })
51 51
 
52
-#endif
52
+#endif /* AVCODEC_BFIN_MATHOPS_H */