/* Minimal compiler test for C compiler.
*/

// Look at the return value with asking the shell (e. g. "echo $?" for bash)
// or a debugger and breakpoints at return. You can set a manual breakpoint with for(;;);

#include <stdlib.h>
#include <string.h>

int
main (void)
{
  int *p_i;
  p_i = (int *)malloc((size_t)sizeof(int));
  memset(p_i,0,(size_t)sizeof(int));
  return (*p_i);
}
