aboutsummaryrefslogtreecommitdiff
path: root/src/audio_format.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-09-29 15:53:53 +0200
committerMax Kellermann <max@duempel.org>2008-09-29 15:53:53 +0200
commita7651b9d307efe2473bd68510aa9a6225e7a0b64 (patch)
tree55b9fc39383e9d8e84f985c2b72ae07960a1bbba /src/audio_format.h
parent35d519625d1748e00f05fa66252c938c1cd2c5d8 (diff)
assume stdint.h and stddef.h are available
Since we use a C99 compiler now, we can assert that the C99 standard headers are available, no need for complicated compile time checks. Kill mpd_types.h.
Diffstat (limited to 'src/audio_format.h')
-rw-r--r--src/audio_format.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_format.h b/src/audio_format.h
index 3bbca373..1c9caee7 100644
--- a/src/audio_format.h
+++ b/src/audio_format.h
@@ -19,7 +19,7 @@
#ifndef AUDIO_FORMAT_H
#define AUDIO_FORMAT_H
-#include "mpd_types.h"
+#include <stdint.h>
struct audio_format {
uint32_t sampleRate;