Index: libmpc/trunk/libmpcdec/streaminfo.c
===================================================================
--- libmpc/trunk/libmpcdec/streaminfo.c	(revision 439)
+++ libmpc/trunk/libmpcdec/streaminfo.c	(revision 443)
@@ -43,5 +43,5 @@
 #include "mpc_bits_reader.h"
 
-unsigned long crc32(unsigned char *buf, int len);
+unsigned long mpc_crc32(unsigned char *buf, int len);
 
 static const char na[] = "n.a.";
@@ -191,5 +191,5 @@
 
 	CRC = (mpc_bits_read(&r, 16) << 16) | mpc_bits_read(&r, 16);
-	if (CRC != crc32(r.buff + 1 - (r.count >> 3), (int)block_size - 4))
+	if (CRC != mpc_crc32(r.buff + 1 - (r.count >> 3), (int)block_size - 4))
 		return MPC_STATUS_FILE;
 
