E
error.right
i see the implement of memcpy() is like this in glibc 2.9
void *
memcpy (dstpp, srcpp, len)
void *dstpp;
const void *srcpp;
size_t len;
{
unsigned long int dstp = (long int) dstpp;
unsigned long int srcp = (long int) srcpp;
but why there is not unsigned long int dstp = (unsigned long int
dstp);
void *
memcpy (dstpp, srcpp, len)
void *dstpp;
const void *srcpp;
size_t len;
{
unsigned long int dstp = (long int) dstpp;
unsigned long int srcp = (long int) srcpp;
but why there is not unsigned long int dstp = (unsigned long int
dstp);