* elflink.c (_bfd_elf_link_assign_sym_version): Improve error
[deliverable/binutils-gdb.git] / libiberty / xmemdup.c
index 0dae37d89235c9d6646c459fa551c931d20235b7..d4831163a204fe8e3a9ec5454577f269bd0fc514 100644 (file)
@@ -31,10 +31,7 @@ allocated, the remaining memory is zeroed.
 #endif
 
 PTR
-xmemdup (input, copy_size, alloc_size)
-  const PTR input;
-  size_t copy_size;
-  size_t alloc_size;
+xmemdup (const PTR input, size_t copy_size, size_t alloc_size)
 {
   PTR output = xcalloc (1, alloc_size);
   return (PTR) memcpy (output, input, copy_size);
This page took 0.022941 seconds and 4 git commands to generate.