/* showmem1.c (emx+gcc) */

#include <stdio.h>
#include <stdlib.h>

extern void showmem (void);

int main (void)
{
  char big[10000], *heap;

  heap = malloc (1);
  big[0] = 0;
  showmem ();
  return (0);
}
