From 0f8ab01c3eb4d540379bc5f28fe0255d9537e938 Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Wed, 30 May 2007 16:52:56 +0000 Subject: Adding a null output plugin. git-svn-id: https://svn.musicpd.org/mpd/trunk@6393 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/mpd_types.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/mpd_types.h') 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 +#elif defined(HAVE_INTTYPES_H) +#include +#elif defined(HAVE_SYS_INTTYPES_H) +#include +#elif defined(HAVE_SYS_TYPES_H) +#include +#endif + typedef unsigned char mpd_uint8; typedef signed char mpd_sint8; -- cgit v1.2.3