1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/mail/xbuffy/files/patch-ac
Satoshi Asami 050eccf96c Another biff replacement.
Submitted by:	Dave Chapeskie <dchapes@ale.zeus.leitch.com>
1995-06-22 06:32:41 +00:00

30 lines
735 B
Plaintext

*** libdyn/dyn_append.c.orig Fri Dec 10 14:56:02 1993
--- libdyn/dyn_append.c Wed Jun 21 16:45:48 1995
***************
*** 11,16 ****
--- 11,17 ----
*/
#include <stdio.h>
+ #include <string.h>
#include "dynP.h"
***************
*** 20,26 ****
int num;
{
if (obj->debug)
! fprintf(stderr, "dyn: append: Writing %d bytes from %d to %d + %d\n",
obj->el_size*num, els, obj->array, obj->num_el*obj->el_size);
if (obj->size < obj->num_el + num) {
--- 21,27 ----
int num;
{
if (obj->debug)
! fprintf(stderr, "dyn: append: Writing %d bytes from %p to %p + %d\n",
obj->el_size*num, els, obj->array, obj->num_el*obj->el_size);
if (obj->size < obj->num_el + num) {