1/* Spew out a long sequence of the byte 251. When fed to bzip22versions 1.0.0 or 1.0.1, causes it to die with internal error31007 in blocksort.c. This assertion misses an extremely rare4case, which is fixed in this version (1.0.2) and above.5*/67/* ------------------------------------------------------------------8This file is part of bzip2/libbzip2, a program and library for9lossless, block-sorting data compression.1011bzip2/libbzip2 version 1.0.8 of 13 July 201912Copyright (C) 1996-2019 Julian Seward <[email protected]>1314Please read the WARNING, DISCLAIMER and PATENTS sections in the15README file.1617This program is released under the terms of the license contained18in the file LICENSE.19------------------------------------------------------------------ */202122#include <stdio.h>2324int main ()25{26int i;27for (i = 0; i < 48500000 ; i++)28putchar(251);29return 0;30}313233