# HG changeset patch # User William Pitcock # Date 1192352258 18000 # Node ID e97cee2185ceb4fd3703bdc7f0b316122d227b7a # Parent 08e87e5051d80e8fae1d8386fc7c58edf5637132 add include guard diff -r 08e87e5051d8 -r e97cee2185ce src/audacious/xconvert.h --- 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 struct xmms_convert_buffers; @@ -32,3 +35,5 @@ int input); convert_freq_func_t xmms_convert_get_frequency_func(AFormat fmt, int channels); + +#endif