merge from gcc

This commit is contained in:
DJ Delorie 2008-03-13 19:13:36 +00:00
parent 5c5f596dbb
commit 6b357a9d2d
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-03-12 Seongbae Park <seongbae.park@gmail.com>
* cplus-dem.c (malloc, realloc): Use void * instead of char *
as return type.
2008-03-11 Nick Clifton <nickc@redhat.com>
* md5.c (md5_process_bytes): Do not assume that memcpy will

View File

@ -52,8 +52,8 @@ Boston, MA 02110-1301, USA. */
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#else
char * malloc ();
char * realloc ();
void * malloc ();
void * realloc ();
#endif
#include <demangle.h>