Ignore:
Timestamp:
06/24/09 23:22:00 (16 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/common/crc32.c

    r135 r443  
    5151
    5252/* Return the CRC of the bytes buf[0..len-1]. */
    53 unsigned long crc32(unsigned char *buf, int len)
     53unsigned long mpc_crc32(unsigned char *buf, int len)
    5454{
    5555        return update_crc(0xffffffffL, buf, len) ^ 0xffffffffL;
Note: See TracChangeset for help on using the changeset viewer.