aboutsummaryrefslogtreecommitdiff
path: root/libiberty/xmemdup.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2005-03-25 04:27:21 +0000
committerDJ Delorie <dj@redhat.com>2005-03-25 04:27:21 +0000
commit51e32d644ad69408eacefacd21e015a6c9c519c2 (patch)
tree0be909d739e50b4e267565b0480ab13af23d2ea6 /libiberty/xmemdup.c
parent695a4822ce79fd4f6d0964091c61e070ff77a189 (diff)
downloadgdb-51e32d644ad69408eacefacd21e015a6c9c519c2.zip
gdb-51e32d644ad69408eacefacd21e015a6c9c519c2.tar.gz
gdb-51e32d644ad69408eacefacd21e015a6c9c519c2.tar.bz2
merge from gcc
Diffstat (limited to 'libiberty/xmemdup.c')
-rw-r--r--libiberty/xmemdup.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libiberty/xmemdup.c b/libiberty/xmemdup.c
index 9e9d66b..0dae37d 100644
--- a/libiberty/xmemdup.c
+++ b/libiberty/xmemdup.c
@@ -24,6 +24,10 @@ allocated, the remaining memory is zeroed.
#include <sys/types.h> /* For size_t. */
#ifdef HAVE_STRING_H
#include <string.h>
+#else
+# ifdef HAVE_STRINGS_H
+# include <strings.h>
+# endif
#endif
PTR
@@ -33,6 +37,5 @@ xmemdup (input, copy_size, alloc_size)
size_t alloc_size;
{
PTR output = xcalloc (1, alloc_size);
- memcpy (output, input, copy_size);
- return output;
+ return (PTR) memcpy (output, input, copy_size);
}