diff options
author | Max Kellermann <max@duempel.org> | 2008-11-11 16:38:33 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-11 16:38:33 +0100 |
commit | 05e69ac0868658411123f8c549b7f34c2c478742 (patch) | |
tree | 6027357c169d4594b2a2b2b52bc0f83fb4351880 /src/replay_gain.c | |
parent | bc1999f815383c8dea0d0bbf516cd8e44b66393d (diff) | |
download | mpd-05e69ac0868658411123f8c549b7f34c2c478742.tar.gz mpd-05e69ac0868658411123f8c549b7f34c2c478742.tar.xz mpd-05e69ac0868658411123f8c549b7f34c2c478742.zip |
replay_gain: don't include os_compat.h
os_compat.h is deprecated and should be replaced with well-defined
standard headers.
Diffstat (limited to '')
-rw-r--r-- | src/replay_gain.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/replay_gain.c b/src/replay_gain.c index 8cdedda2a..74b7c7f34 100644 --- a/src/replay_gain.c +++ b/src/replay_gain.c @@ -21,9 +21,11 @@ #include "conf.h" #include "audio_format.h" #include "pcm_utils.h" -#include "os_compat.h" #include <glib.h> +#include <stdlib.h> +#include <string.h> +#include <math.h> static const char *const replay_gain_mode_names[] = { [REPLAY_GAIN_ALBUM] = "album", |