mk251.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:1k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: mk251.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:45:47  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* Spew out a long sequence of the byte 251.  When fed to bzip2
  10.    versions 1.0.0 or 1.0.1, causes it to die with internal error
  11.    1007 in blocksort.c.  This assertion misses an extremely rare
  12.    case, which is fixed in this version (1.0.2) and above.
  13. */
  14. #include <stdio.h>
  15. int main ()
  16. {
  17.    int i;
  18.    for (i = 0; i < 48500000 ; i++)
  19.      putchar(251);
  20.    return 0;
  21. }