diff options
author | Max Kellermann <max@duempel.org> | 2013-01-03 00:35:05 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-03 00:35:05 +0100 |
commit | fa3d1156a6bdbb8fab2a90e1716a1f152f7e8104 (patch) | |
tree | d99858622f1cb6dd4d25786c8f041ec6bd36fc29 /src | |
parent | 0eb05b827fc239854773b43baff82581d65f9c5b (diff) |
playlist_edit: convert to C++
Diffstat (limited to 'src')
-rw-r--r-- | src/PlaylistEdit.cxx (renamed from src/playlist_edit.c) | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/playlist_edit.c b/src/PlaylistEdit.cxx index 2b7cdd8ae..76e102862 100644 --- a/src/playlist_edit.c +++ b/src/PlaylistEdit.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -24,12 +24,14 @@ */ #include "config.h" +extern "C" { #include "playlist_internal.h" #include "player_control.h" #include "database.h" #include "uri.h" #include "song.h" #include "idle.h" +} #include <stdlib.h> |