/* Minimal compiler test for C compiler.

Test with only including all standard headers (Chapter 7.1.2. of the ANSI/ISO-C standard).
These headers are the minimal set of availible headers. If an implementations does not have
all of them, it is not ANSI/ISO-C.

*/

#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <fenv.h>
#include <inttypes.h>
#include <signal.h>
#include <locale.h>
#include <math.h>
#include <setjmp.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <tgmath.h>
#include <time.h>
#include <wchar.h>
#include <wctype.h>


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