From f79a70d1b9bab78fca515ac9142607ce2414e333 Mon Sep 17 00:00:00 2001 From: Avuton Olrich Date: Sun, 20 Aug 2006 00:50:44 +0000 Subject: Fix warnings for -Wmissing-prototypes Add -Wmissing-prototypes if compiling with gcc Static where possible git-svn-id: https://svn.musicpd.org/mpd/trunk@4657 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/song.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/song.h') diff --git a/src/song.h b/src/song.h index d4fde5470..c803b9695 100644 --- a/src/song.h +++ b/src/song.h @@ -43,7 +43,7 @@ typedef struct _Song { typedef List SongList; -Song *newNullSong(); +Song *newNullSong(void); Song *newSong(char *url, int songType, struct _Directory *parentDir); @@ -51,7 +51,7 @@ void freeSong(Song *); void freeJustSong(Song *); -SongList *newSongList(); +SongList *newSongList(void); void freeSongList(SongList * list); -- cgit v1.2.3