CMake/Tests/CustomCommand/tcat.cxx
Brad King c7d84b21c6 BUG: Do not escape shell operators when generating command lines.
- See bug#6868.
  - Update CustomCommand test to check.
2008-04-29 15:34:49 -04:00

12 lines
126 B
C++

#include <stdio.h>
int main()
{
int c;
while((c = getc(stdin), c != EOF))
{
putc(c, stdout);
}
return 0;
}