mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 09:54:15 +00:00
c7d84b21c6
- See bug#6868. - Update CustomCommand test to check.
12 lines
126 B
C++
12 lines
126 B
C++
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int c;
|
|
while((c = getc(stdin), c != EOF))
|
|
{
|
|
putc(c, stdout);
|
|
}
|
|
return 0;
|
|
}
|