Index: /libmpc/trunk/mpcdec/mpcdec.c
===================================================================
--- /libmpc/trunk/mpcdec/mpcdec.c	(revision 480)
+++ /libmpc/trunk/mpcdec/mpcdec.c	(revision 481)
@@ -41,5 +41,4 @@
 #include <getopt.h>
 #include <math.h>
-#include <byteswap.h>
 
 #ifdef _MSC_VER
@@ -76,4 +75,9 @@
     FILE* p_handle = (FILE*) p_user_data;
     return (t_wav_uint32) !fseek(p_handle, p_position, SEEK_SET);
+}
+
+static short bswap_16(short in)
+{
+	return (in << 8) | ((in >> 8) & 0xFF);
 }
 
