The reason you are getting the references to void is the function prototype
for memcpy is:
memcpy (void *dest, void *src, size_t n);
You are passing char* pointers which are not void * pointers. You have to
correct your arguments
to remove the error messages. Please use man memcpy() for more details.
Jeff Fellin
RFL Electronics
[EMAIL PROTECTED]
973 334-3100, x 327
-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming"
in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html