aboutsummaryrefslogtreecommitdiffstats
path: root/src/mpd_types.h
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2007-05-30 16:52:56 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2007-05-30 16:52:56 +0000
commit0f8ab01c3eb4d540379bc5f28fe0255d9537e938 (patch)
tree2e8aa2b49d908dc9c35ff397e1c897ea106d2231 /src/mpd_types.h
parent4155cd9940dfb629287252b3c2f88c126d868edd (diff)
downloadmpd-0f8ab01c3eb4d540379bc5f28fe0255d9537e938.tar.gz
mpd-0f8ab01c3eb4d540379bc5f28fe0255d9537e938.tar.xz
mpd-0f8ab01c3eb4d540379bc5f28fe0255d9537e938.zip
Adding a null output plugin.
git-svn-id: https://svn.musicpd.org/mpd/trunk@6393 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/mpd_types.h')
-rw-r--r--src/mpd_types.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mpd_types.h b/src/mpd_types.h
index dbdfc6865..1b5e40b69 100644
--- a/src/mpd_types.h
+++ b/src/mpd_types.h
@@ -21,6 +21,16 @@
#include "../config.h"
+#if defined(HAVE_STDINT_H)
+#include <stdint.h>
+#elif defined(HAVE_INTTYPES_H)
+#include <inttypes.h>
+#elif defined(HAVE_SYS_INTTYPES_H)
+#include <sys/inttypes.h>
+#elif defined(HAVE_SYS_TYPES_H)
+#include <sys/types.h>
+#endif
+
typedef unsigned char mpd_uint8;
typedef signed char mpd_sint8;