Ignore:
Timestamp:
06/24/09 23:22:00 (15 years ago)
Author:
r2d
Message:

renamed crc32 to mpc_crc32 to avoid name conflics with static libs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/libmpcenc/bitstream.c

    r427 r443  
    2929#include "stdio.h"
    3030
    31 unsigned long crc32(unsigned char *buf, int len);
     31unsigned long mpc_crc32(unsigned char *buf, int len);
    3232
    3333#define MAX_ENUM 32
     
    207207        if (addCRC) {
    208208                char tmp[4];
    209                 unsigned long CRC32 = crc32((unsigned char *) e->buffer, e->pos);
     209                unsigned long CRC32 = mpc_crc32((unsigned char *) e->buffer, e->pos);
    210210                tmp[0] = (char) (CRC32 >> 24);
    211211                tmp[1] = (char) (CRC32 >> 16);
Note: See TracChangeset for help on using the changeset viewer.