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 Thu, Feb 07, 2013 at 10:29:21PM +0100, Andreas Jaeger wrote:
> >  void *
> >-__mempcpy (dstpp, srcpp, len)
> >-     void *dstpp;
> >-     const void *srcpp;
> >+__mempcpy (dest, src, len)
> >+     void *dest;
> >+     const void *src;
> >       size_t len;
> 
> Shouldn't this be: __mempcpy (void dest, const void *src, size_t
> len) ? We're converting the code to get rid of the old prototypes.
> 
Commited with new prototype.


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