=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mg/yank.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- src/usr.bin/mg/yank.c 2015/03/16 13:47:48 1.12 +++ src/usr.bin/mg/yank.c 2015/03/19 21:22:15 1.13 @@ -1,4 +1,4 @@ -/* $OpenBSD: yank.c,v 1.12 2015/03/16 13:47:48 bcallah Exp $ */ +/* $OpenBSD: yank.c,v 1.13 2015/03/19 21:22:15 bcallah Exp $ */ /* This file is in the public domain. */ @@ -6,13 +6,15 @@ * kill ring functions */ -#include "def.h" - +#include +#include +#include +#include #include -#ifndef KBLOCK -#define KBLOCK 256 /* Kill buffer block size. */ -#endif +#include "def.h" + +#define KBLOCK 8192 /* Kill grow. */ static char *kbufp = NULL; /* Kill buffer data. */ static RSIZE kused = 0; /* # of bytes used in KB. */