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__
#define __BASE_CPRINTF_FORMATS_HH__
#include <sstream>
#include <cstring>
#include <ostream>
#include <sstream>
namespace cp {

View file

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

View file

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

View file

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