diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-25 06:28:16 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-25 06:28:16 +0000 |
commit | 75d716e297bc9012a549da20ef1fa6180d8f050e (patch) | |
tree | d8fbeeedab192d77af35ac46c8c0b458e3da1838 /include/libiberty.h | |
parent | 57811700d42143f211f94f83de8806a537e2a16a (diff) | |
download | gcc-75d716e297bc9012a549da20ef1fa6180d8f050e.tar.gz |
include/:
PR bootstrap/40854
* libiberty.h (xcrc32): Rename from crc32.
libiberty/:
PR bootstrap/40854
* crc32.c (xcrc32): Rename from crc32.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150075 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include/libiberty.h')
-rw-r--r-- | include/libiberty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libiberty.h b/include/libiberty.h index e50ad64712e..a7716e4a414 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -313,7 +313,7 @@ extern double physmem_total (void); extern double physmem_available (void); /* Compute the 32-bit CRC of a block of memory. */ -extern unsigned int crc32 (const unsigned char *, int, unsigned int); +extern unsigned int xcrc32 (const unsigned char *, int, unsigned int); /* These macros provide a K&R/C89/C++-friendly way of allocating structures with nice encapsulation. The XDELETE*() macros are technically |