memcpy_s c memcpy

memcpy_s - memset c



error: advertencia: declaración implícita incompatible de la función incorporada ''memcpy'' (1)

Probablemente olvidaste incluir <string.h> .

Agregue #include <string.h> a la parte superior de su archivo.

Me sale este error.

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

Este es el código:

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

¿Que estoy haciendo mal?