cplus-dem.c (malloc, realloc): Use void * instead of char * as return type.
2008-03-12 Seongbae Park <seongbae.park@gmail.com> * cplus-dem.c (malloc, realloc): Use void * instead of char * as return type. From-SVN: r133181
This commit is contained in:
parent
75d8b30e6d
commit
5a9340fd7f
@ -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