mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
050eccf96c
Submitted by: Dave Chapeskie <dchapes@ale.zeus.leitch.com>
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
*** libdyn/dyn_insert.c.orig Fri Dec 10 14:56:04 1993
|
|
--- libdyn/dyn_insert.c Wed Jun 21 16:47:42 1995
|
|
***************
|
|
*** 11,16 ****
|
|
--- 11,17 ----
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
+ #include <string.h>
|
|
#include "dynP.h"
|
|
|
|
int DynInsert(obj, index, els, num)
|
|
***************
|
|
*** 35,41 ****
|
|
}
|
|
|
|
if (obj->debug)
|
|
! fprintf(stderr,"dyn: insert: Moving %d bytes from %d + %d to + %d\n",
|
|
(obj->num_el-index)*obj->el_size, obj->array,
|
|
obj->el_size*index, obj->el_size*(index+num));
|
|
|
|
--- 36,42 ----
|
|
}
|
|
|
|
if (obj->debug)
|
|
! fprintf(stderr,"dyn: insert: Moving %d bytes from %p + %d to + %d\n",
|
|
(obj->num_el-index)*obj->el_size, obj->array,
|
|
obj->el_size*index, obj->el_size*(index+num));
|
|
|
|
***************
|
|
*** 46,52 ****
|
|
(obj->num_el-index)*obj->el_size);
|
|
|
|
if (obj->debug)
|
|
! fprintf(stderr, "dyn: insert: Copying %d bytes from %d to %d + %d\n",
|
|
obj->el_size*num, els, obj->array, obj->el_size*index);
|
|
|
|
bcopy(els, obj->array + obj->el_size*index, obj->el_size*num);
|
|
--- 47,53 ----
|
|
(obj->num_el-index)*obj->el_size);
|
|
|
|
if (obj->debug)
|
|
! fprintf(stderr, "dyn: insert: Copying %d bytes from %p to %p + %d\n",
|
|
obj->el_size*num, els, obj->array, obj->el_size*index);
|
|
|
|
bcopy(els, obj->array + obj->el_size*index, obj->el_size*num);
|