Fix up TestLldbGdbServer C++ test slug exe.

Missing header for Linux, replaces with iostreams.

llvm-svn: 208794
This commit is contained in:
Todd Fiala 2014-05-14 17:12:02 +00:00
parent 6692e7c116
commit 028a43f910
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ int main (int argc, char **argv)
// Treat as the amount of time to have this process sleep (in seconds).
const int sleep_seconds = std::atoi (argv[i] + strlen (SLEEP_PREFIX));
const int sleep_result = sleep(sleep_seconds);
printf("sleep result: %d\n", sleep_result);
std::cout << "sleep result: " << sleep_result << std::endl;
}
else
{