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