修正前 void copy( int *to, int *from, size_t len ) { memcmp( to, from, len ) ; } 解説 memcmp( )の返却値を使用しないならば、 コールする意味がないので、 memcpy( )と間違えていると思われます。