annotate src/bzip2-1.0.6/mk251.c @ 23:619f715526df sv_v2.1

Update Vamp plugin SDK to 2.5
author Chris Cannam
date Thu, 09 May 2013 10:52:46 +0100
parents e13257ea84a4
children
rev   line source
Chris@4 1
Chris@4 2 /* Spew out a long sequence of the byte 251. When fed to bzip2
Chris@4 3 versions 1.0.0 or 1.0.1, causes it to die with internal error
Chris@4 4 1007 in blocksort.c. This assertion misses an extremely rare
Chris@4 5 case, which is fixed in this version (1.0.2) and above.
Chris@4 6 */
Chris@4 7
Chris@4 8 /* ------------------------------------------------------------------
Chris@4 9 This file is part of bzip2/libbzip2, a program and library for
Chris@4 10 lossless, block-sorting data compression.
Chris@4 11
Chris@4 12 bzip2/libbzip2 version 1.0.6 of 6 September 2010
Chris@4 13 Copyright (C) 1996-2010 Julian Seward <jseward@bzip.org>
Chris@4 14
Chris@4 15 Please read the WARNING, DISCLAIMER and PATENTS sections in the
Chris@4 16 README file.
Chris@4 17
Chris@4 18 This program is released under the terms of the license contained
Chris@4 19 in the file LICENSE.
Chris@4 20 ------------------------------------------------------------------ */
Chris@4 21
Chris@4 22
Chris@4 23 #include <stdio.h>
Chris@4 24
Chris@4 25 int main ()
Chris@4 26 {
Chris@4 27 int i;
Chris@4 28 for (i = 0; i < 48500000 ; i++)
Chris@4 29 putchar(251);
Chris@4 30 return 0;
Chris@4 31 }