hmm... i have that, too. I also tested it with this simple code: #include <stdio.h> #include <string.h>
int main() {
char *m1;
char m2[10];
m1 = (char *) memmove(m2, "ABCDEFGHI", 4);
m2[4] = 0;
printf("m1 : (%s)\n", m1);
printf("m2 : (%s)\n", m2);
return(0);
}
and it was compiled and executed. So, i guess the problem isn't a
missing memmove after all...
Thanks

