// Minimal compiler test for C compiler.
//
// This Test produces NO error/warning with an ANSI-C compiler (see also C-FAQs).

#include <stdio.h>
#include <stdlib.h>

int
main (void)
{
  int c;

  while ((c = getchar ()) != EOF)
    putchar (c);
  return 0;
}
