home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / sys / tests / benchmarks / bigjob.c next >
Encoding:
C/C++ Source or Header  |  1985-05-06  |  206 b   |  13 lines

  1. /*
  2.  * Benchmark "null big job" program.
  3.  */
  4. /* 250 here is intended to approximate vi's text+data size */
  5. char    space[1024 * 250] = "force into data segment";
  6.  
  7. main(argc, argv)
  8.     char *argv[];
  9. {
  10.  
  11.     exit(0);
  12. }
  13.