1static int      gl_cnt = 0;
2static char     gl_buf[1024];
3
4void
5gl_yank()
6{
7  int  i;
8
9  for (i=gl_cnt; i >= 0; i--)
10    gl_buf[i+10] = gl_buf[i];
11}
12