BLOCKSIZE          13 archive-tar.c  static char block[BLOCKSIZE];
BLOCKSIZE          24 archive-tar.c  	if (offset == BLOCKSIZE) {
BLOCKSIZE          25 archive-tar.c  		write_or_die(1, block, BLOCKSIZE);
BLOCKSIZE          39 archive-tar.c  		unsigned long chunk = BLOCKSIZE - offset;
BLOCKSIZE          48 archive-tar.c  	while (size >= BLOCKSIZE) {
BLOCKSIZE          49 archive-tar.c  		write_or_die(1, buf, BLOCKSIZE);
BLOCKSIZE          50 archive-tar.c  		size -= BLOCKSIZE;
BLOCKSIZE          51 archive-tar.c  		buf += BLOCKSIZE;
BLOCKSIZE          82 archive-tar.c  	int tail = BLOCKSIZE - offset;
BLOCKSIZE          84 archive-tar.c  	write_or_die(1, block, BLOCKSIZE);
BLOCKSIZE          87 archive-tar.c  		write_or_die(1, block, BLOCKSIZE);
BLOCKSIZE         100 archive-tar.c  	char buf[BLOCKSIZE];