This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Call memcpy in generic mempcpy


On 02/06/13 12:53, OndÅej BÃlka wrote:
>    unsigned long int dstp = (long int) dstpp;
...
> +  memcpy (dstpp, srcpp, len);
> +  return (void *) (dstp + len);

There's no need to use an integer type, or
to do any casts.  Something like this, perhaps?

  char *dstp = dstpp;
  memcpy (destpp, srcpp, len);
  return dstp + len;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]