Add missing header includer for C libraries.

This commit is contained in:
Simon Robertshaw 2012-06-02 16:51:01 +01:00
parent e0c9dab8cb
commit a247951115
3 changed files with 5 additions and 2 deletions

View File

@ -2,6 +2,8 @@
#define GRAPHICS_H
#include <string>
#include <cstdlib>
#include <cstring>
#if defined(OGLR)
#include "OpenGLHeaders.h"
#endif

View File

@ -1,8 +1,8 @@
#include <iostream>
#include <stack>
#include <cstdio>
#include "Config.h"
#include <stack>
#include "interface/Window.h"
#include "interface/Platform.h"
#include "interface/Engine.h"

View File

@ -8,6 +8,7 @@
#ifndef SIMULATION_H_
#define SIMULATION_H_
#include <cstring>
#include <cstddef>
#include "Config.h"
#include "Renderer.h"
#include "Graphics.h"