* Duplicate a single rr_t structure or the whole list (based on * "first" param) using shm_malloc */
| 346 | * "first" param) using shm_malloc |
| 347 | */ |
| 348 | int shm_duplicate_rr(rr_t** _new, rr_t* _r, int first) |
| 349 | { |
| 350 | return do_duplicate_rr(_new, _r, 1, first); |
| 351 | } |
| 352 | |
| 353 | |
| 354 | /** |
no test coverage detected