/* Test auf ANSI-Compiler */
/* Datei: pansi1.c */
#include <stdio.h>
#if __STDC__
#define ERGEBNIS 1
#else
#define ERGEBNIS 0
#endif

int main ()
{
printf ("\nTest auf ANSI: %d",ERGEBNIS);
return 0;
}
