mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
merge from gcc
This commit is contained in:
parent
5c5f596dbb
commit
6b357a9d2d
@ -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
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user