song: don't export newNullSong()

The function newNullSong() is only used internally in song.c.
This commit is contained in:
Max Kellermann 2008-08-29 09:39:07 +02:00
parent a208d654b3
commit 031522060a
2 changed files with 1 additions and 3 deletions

View File

@ -33,7 +33,7 @@
#include "os_compat.h"
Song *newNullSong(void)
static Song *newNullSong(void)
{
Song *song = xmalloc(sizeof(Song));

View File

@ -43,8 +43,6 @@ typedef struct _Song {
typedef List SongList;
Song *newNullSong(void);
Song *newSong(const char *url, int songType, struct _Directory *parentDir);
void freeSong(Song *);