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:
Seongbae Park 2008-03-13 18:49:45 +00:00 committed by Seongbae Park
parent 75d8b30e6d
commit 5a9340fd7f
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>