diff options
author | Max Kellermann <max@duempel.org> | 2008-08-28 20:01:08 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-28 20:01:08 +0200 |
commit | b7861868cf68e5e5b1ad75bb44555591edbdb2d9 (patch) | |
tree | 47265a9beae48eb1df6bdaefca3dc54db4ac134a /src | |
parent | f34f694ec3f5ea8d6ed4e340bac2302ad056583c (diff) | |
download | mpd-b7861868cf68e5e5b1ad75bb44555591edbdb2d9.tar.gz mpd-b7861868cf68e5e5b1ad75bb44555591edbdb2d9.tar.xz mpd-b7861868cf68e5e5b1ad75bb44555591edbdb2d9.zip |
protect locate.h from double inclusion
Diffstat (limited to 'src')
-rw-r--r-- | src/locate.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/locate.h b/src/locate.h index 28b2782b0..325ae384d 100644 --- a/src/locate.h +++ b/src/locate.h @@ -16,6 +16,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifndef LOCATE_H +#define LOCATE_H + #include "song.h" #define LOCATE_TAG_FILE_TYPE TAG_NUM_OF_ITEM_TYPES+10 @@ -44,3 +47,5 @@ void freeLocateTagItem(LocateTagItem * item); int strstrSearchTags(Song * song, int numItems, LocateTagItem * items); int tagItemsFoundAndMatches(Song * song, int numItems, LocateTagItem * items); + +#endif |