diff src/audacious/xconvert.h @ 3749:e97cee2185ce

add include guard
author William Pitcock <nenolod@atheme.org>
date Sun, 14 Oct 2007 03:57:38 -0500
parents 3b6d316f8b09
children
line wrap: on
line diff
--- a/src/audacious/xconvert.h	Sun Oct 14 03:57:03 2007 -0500
+++ b/src/audacious/xconvert.h	Sun Oct 14 03:57:38 2007 -0500
@@ -4,6 +4,9 @@
  *  Licensed under GNU GPL version 3.
  */
 
+#ifndef _AUDACIOUS_XCONVERT_H
+#define _AUDACIOUS_XCONVERT_H
+
 #include <audacious/plugin.h>
 
 struct xmms_convert_buffers;
@@ -32,3 +35,5 @@
                                                      int input);
 convert_freq_func_t xmms_convert_get_frequency_func(AFormat fmt,
                                                     int channels);
+
+#endif