#include #include #include "test_util.h" OPTNONE int main(void) { char *firstbuffer = malloc(16); char *secondbuffer = malloc(32); if (!firstbuffer && !secondbuffer) { return 1; } memset(secondbuffer, 'a', 32); memmove(firstbuffer, secondbuffer, 32); return 1; }