/*
 * $Header: /home/gene/library/website/docsrc/wgc/wgcperf/RCS/demo0000.c,v 395.1 2008/04/20 17:25:48 gene Exp $
 *
 * A program that doesn't use malloc or GC_malloc (from Boehm)
 * at all.
 */

#include "this.h"

/*
 * A large (sort of) chunk of memory, just for the sake of
 * allocating _something_.
 */
static char S_x[32 * 1024];

int
main ()
{
  int rc = 0;

  assert (S_x != NULL);
  ReportLine (0, 0, 0, "static allocation", __FILE__);
  return rc == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
}

/* --- end of file --- */
