Index: libmpc/trunk/libmpcenc/bitstream.c
===================================================================
--- libmpc/trunk/libmpcenc/bitstream.c	(revision 427)
+++ libmpc/trunk/libmpcenc/bitstream.c	(revision 443)
@@ -29,5 +29,5 @@
 #include "stdio.h"
 
-unsigned long crc32(unsigned char *buf, int len);
+unsigned long mpc_crc32(unsigned char *buf, int len);
 
 #define MAX_ENUM 32
@@ -207,5 +207,5 @@
 	if (addCRC) {
 		char tmp[4];
-		unsigned long CRC32 = crc32((unsigned char *) e->buffer, e->pos);
+		unsigned long CRC32 = mpc_crc32((unsigned char *) e->buffer, e->pos);
 		tmp[0] = (char) (CRC32 >> 24);
 		tmp[1] = (char) (CRC32 >> 16);
