Skip to content

Commit

Permalink
2008-03-12 Seongbae Park <seongbae.park@gmail.com>
Browse files Browse the repository at this point in the history
	* cplus-dem.c (malloc, realloc): Use void * instead of char *
	as return type.



git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@133181 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
spark committed Mar 13, 2008
1 parent 5b2ddfe commit 5611762
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions libiberty/ChangeLog
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions libiberty/cplus-dem.c
Expand Up @@ -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>
Expand Down

0 comments on commit 5611762

Please sign in to comment.