diff src/audacious/af_compat.h @ 4557:2eee464379dc

Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 May 2008 01:29:46 +0300
parents 060c9865ea17
children
line wrap: on
line diff
--- a/src/audacious/af_compat.h	Sun May 18 21:11:14 2008 +0300
+++ b/src/audacious/af_compat.h	Mon May 19 01:29:46 2008 +0300
@@ -2,8 +2,8 @@
  * MPlayer libaf compatibility stuff
  */
 
-#ifndef AF_COMPAT_H
-#define AF_COMPAT_H
+#ifndef AUDACIOUS_AF_COMPAT_H
+#define AUDACIOUS_AF_COMPAT_H
 
 #include <glib.h>
 #include "main.h"
@@ -110,4 +110,4 @@
 #define clamp(a,min,max) (((a)>(max))?(max):(((a)<(min))?(min):(a)))
 #endif
 
-#endif /* AF_COMPAT_H */
+#endif /* AUDACIOUS_AF_COMPAT_H */