/* Minimal compiler test for C compiler.

Look for float.h, iso646.h, limits.h, stdarg.h, stdbool.h, stddef.h,
and stdint.h. It is allowed but unusual if that they are missing in an conforming
freestanding ANSI/ISO-C implementation.

*/

// #include <complex.h>
#include <float.h>
#include <iso646.h>
#include <limits.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdlib.h>

int
main (void)
{
  exit (0);
}
