error: warning: incompatible implicit declaration of built-in function ‘memcpy’ [enabled by default]

I get this error.

error: warning: incompatible implicit declaration of built-in function ‘memcpy’ [enabled by default] 

This is the code:

int arr[ 12] = {1,0,0,0,0,0,0,0,0,0,9370, 0}; void *a = &arr; memcpy(machine->mem, a,12*4); 

What I am doing wrong?

1 Answer

You likely forgot to include <string.h>.

Add #include <string.h> to the top of your file.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like