(from, to, size)
| 186 | } |
| 187 | |
| 188 | static void |
| 189 | my_bcopy(from, to, size) |
| 190 | const char *from; |
| 191 | char *to; |
| 192 | int size; |
| 193 | { |
| 194 | int i; |
| 195 | |
| 196 | for (i = 0; i < size; i++) |
| 197 | { |
| 198 | to[i] = from[i]; |
| 199 | } |
| 200 | } |
| 201 | #endif /* GNU C library. */ |
| 202 | |
| 203 | /* Handle permutation of arguments. */ |