// Minimal compiler test for C compiler.
//
// This Test should produce no error/warning but will only run (without an error)
// on some microcontrollers.

int
main (void)
{
  (*(void (*)()) 0) ();         /* Call subroutine at 0. From "C traps and pitfals", 1989. */
  return 0;
}
