diff options
author | Max Kellermann <max@duempel.org> | 2013-01-02 19:22:15 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-02 19:22:15 +0100 |
commit | a654f146d1b39a363cb10853a7670ef099570e54 (patch) | |
tree | 2c171646333f0b529655b57bee2c1eb6a3dd7c1c /src/UpdateIO.cxx | |
parent | 67b46a151da4ca6f81fa63d30e2c629da352ec45 (diff) | |
download | mpd-a654f146d1b39a363cb10853a7670ef099570e54.tar.gz mpd-a654f146d1b39a363cb10853a7670ef099570e54.tar.xz mpd-a654f146d1b39a363cb10853a7670ef099570e54.zip |
update: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/UpdateIO.cxx (renamed from src/update_io.c) | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/update_io.c b/src/UpdateIO.cxx index c6a540a0f..fefbc4d11 100644 --- a/src/update_io.c +++ b/src/UpdateIO.cxx @@ -18,11 +18,14 @@ */ #include "config.h" /* must be first for large file support */ -#include "update_io.h" -#include "mapper.h" +#include "UpdateIO.hxx" #include "directory.h" #include "glib_compat.h" +extern "C" { +#include "mapper.h" +} + #include <glib.h> #include <errno.h> |