diff options
author | Max Kellermann <max@duempel.org> | 2013-11-11 08:17:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-11 08:20:09 +0100 |
commit | 287c70e3611022ff40c673feeef71eecd79beea8 (patch) | |
tree | 1e487a32f0b702b2fad93c35670947b649e16ae9 /src | |
parent | f6b44af9988d0287b6f4974ba9daab57f6298ed2 (diff) |
filter/route, ...: add missing stdlib.h includes
Diffstat (limited to 'src')
-rw-r--r-- | src/SongSave.cxx | 1 | ||||
-rw-r--r-- | src/encoder/OpusEncoderPlugin.cxx | 1 | ||||
-rw-r--r-- | src/filter/RouteFilterPlugin.cxx | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/SongSave.cxx b/src/SongSave.cxx index ae055729d..63e279a16 100644 --- a/src/SongSave.cxx +++ b/src/SongSave.cxx @@ -30,6 +30,7 @@ #include "util/Domain.hxx" #include <string.h> +#include <stdlib.h> #define SONG_MTIME "mtime" #define SONG_END "song_end" diff --git a/src/encoder/OpusEncoderPlugin.cxx b/src/encoder/OpusEncoderPlugin.cxx index 29f7df726..243dc0836 100644 --- a/src/encoder/OpusEncoderPlugin.cxx +++ b/src/encoder/OpusEncoderPlugin.cxx @@ -34,6 +34,7 @@ #include <glib.h> #include <assert.h> +#include <stdlib.h> struct opus_encoder { /** the base class */ diff --git a/src/filter/RouteFilterPlugin.cxx b/src/filter/RouteFilterPlugin.cxx index c0b0be242..d9042c21f 100644 --- a/src/filter/RouteFilterPlugin.cxx +++ b/src/filter/RouteFilterPlugin.cxx @@ -56,6 +56,7 @@ #include <assert.h> #include <string.h> #include <stdint.h> +#include <stdlib.h> class RouteFilter final : public Filter { /** |