mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-26 11:04:33 +00:00
Run Tests/RunCMake/cmake-E-bin2c/generate_files.sh to regenerate the following files: - Tests/RunCMake/cmake-E-bin2c/long.c.txt - Tests/RunCMake/cmake-E-bin2c/long_signed.c.txt - Tests/RunCMake/cmake-E-bin2c/jack_count.cmake - Tests/RunCMake/cmake-E-bin2c/hashes.cmake
22 lines
391 B
C++
22 lines
391 B
C++
#include <iostream>
|
|
|
|
#ifdef _WIN32
|
|
# include <fcntl.h> // for _O_BINARY
|
|
# include <io.h> // for _setmode
|
|
# include <stdio.h> // for _fileno
|
|
#endif
|
|
|
|
int main()
|
|
{
|
|
#ifdef _WIN32
|
|
_setmode(_fileno(stdout), _O_BINARY);
|
|
#endif
|
|
|
|
for (unsigned long i = 0; i < JACK_COUNT; i++) {
|
|
std::cout
|
|
<< " All work and no play makes Jack a dull boy. \n";
|
|
}
|
|
|
|
return 0;
|
|
}
|