Chris@4: Chris@4: /* Spew out a long sequence of the byte 251. When fed to bzip2 Chris@4: versions 1.0.0 or 1.0.1, causes it to die with internal error Chris@4: 1007 in blocksort.c. This assertion misses an extremely rare Chris@4: case, which is fixed in this version (1.0.2) and above. Chris@4: */ Chris@4: Chris@4: /* ------------------------------------------------------------------ Chris@4: This file is part of bzip2/libbzip2, a program and library for Chris@4: lossless, block-sorting data compression. Chris@4: Chris@4: bzip2/libbzip2 version 1.0.6 of 6 September 2010 Chris@4: Copyright (C) 1996-2010 Julian Seward Chris@4: Chris@4: Please read the WARNING, DISCLAIMER and PATENTS sections in the Chris@4: README file. Chris@4: Chris@4: This program is released under the terms of the license contained Chris@4: in the file LICENSE. Chris@4: ------------------------------------------------------------------ */ Chris@4: Chris@4: Chris@4: #include Chris@4: Chris@4: int main () Chris@4: { Chris@4: int i; Chris@4: for (i = 0; i < 48500000 ; i++) Chris@4: putchar(251); Chris@4: return 0; Chris@4: }