Use the proper version of C++ headers

This commit is contained in:
Nathan Binkert 2008-09-19 09:11:43 -07:00
parent ea83cedcf6
commit befae3c0b0
4 changed files with 7 additions and 4 deletions

View file

@ -31,8 +31,9 @@
#ifndef __BASE_CPRINTF_FORMATS_HH__ #ifndef __BASE_CPRINTF_FORMATS_HH__
#define __BASE_CPRINTF_FORMATS_HH__ #define __BASE_CPRINTF_FORMATS_HH__
#include <sstream> #include <cstring>
#include <ostream> #include <ostream>
#include <sstream>
namespace cp { namespace cp {

View file

@ -28,6 +28,7 @@
* Authors: Nathan Binkert * Authors: Nathan Binkert
*/ */
#include <cstdlib>
#include <iostream> #include <iostream>
#include <string> #include <string>

View file

@ -28,9 +28,9 @@
* Authors: Nathan Binkert * Authors: Nathan Binkert
*/ */
#include <sys/types.h> #include <cctype>
#include <sys/time.h> #include <cstring>
#include <time.h> #include <ctime>
#include <iostream> #include <iostream>
#include <string> #include <string>

View file

@ -38,6 +38,7 @@
#include <algorithm> #include <algorithm>
#include <cassert> #include <cassert>
#include <climits>
#include <map> #include <map>
#include <string> #include <string>
#include <vector> #include <vector>