summaryrefslogtreecommitdiff
path: root/Tests/CustomCommand/tcat.cxx
blob: d010d14838cabb22d1d00daf759864695b34b874 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

int main()
{
  int c;
  while ((c = getc(stdin), c != EOF)) {
    putc(c, stdout);
  }
  return 0;
}