aboutsummaryrefslogtreecommitdiffstats
path: root/src/replay_gain.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-11-11 16:38:33 +0100
committerMax Kellermann <max@duempel.org>2008-11-11 16:38:33 +0100
commit05e69ac0868658411123f8c549b7f34c2c478742 (patch)
tree6027357c169d4594b2a2b2b52bc0f83fb4351880 /src/replay_gain.c
parentbc1999f815383c8dea0d0bbf516cd8e44b66393d (diff)
downloadmpd-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 'src/replay_gain.c')
-rw-r--r--src/replay_gain.c4
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",