Removing some unnecessary #includes

svn-id: r26044
This commit is contained in:
Max Horn 2007-03-09 23:46:45 +00:00
parent e8e33e8077
commit 728d01cb17
11 changed files with 1 additions and 24 deletions

View file

@ -23,7 +23,6 @@
#define COMMON_ARRAY_H #define COMMON_ARRAY_H
#include "common/scummsys.h" #include "common/scummsys.h"
#include <assert.h>
namespace Common { namespace Common {

View file

@ -49,7 +49,6 @@
*/ */
#include "common/hashmap.h" #include "common/hashmap.h"
#include <ctype.h>
namespace Common { namespace Common {

View file

@ -23,7 +23,6 @@
#define COMMON_LIST_H #define COMMON_LIST_H
#include "common/scummsys.h" #include "common/scummsys.h"
#include <assert.h>
namespace Common { namespace Common {

View file

@ -25,8 +25,6 @@
* this program is licensed under the GPL. * this program is licensed under the GPL.
*/ */
#include <string.h>
#include "common/file.h" #include "common/file.h"
#include "common/md5.h" #include "common/md5.h"
#include "common/util.h" #include "common/util.h"

View file

@ -28,9 +28,6 @@
#error Included scummsys.h without including stdafx.h first! #error Included scummsys.h without including stdafx.h first!
#endif #endif
#include <stdlib.h>
#include <stdio.h>
// Use config.h, generated by configure // Use config.h, generated by configure
#if defined(HAVE_CONFIG_H) #if defined(HAVE_CONFIG_H)
#include "config.h" #include "config.h"
@ -304,11 +301,6 @@
#define SCUMM_LITTLE_ENDIAN #define SCUMM_LITTLE_ENDIAN
#include "nds/jtypes.h" #include "nds/jtypes.h"
#include <stdarg.h>
#include <ctype.h>
#include <string.h>
#include <math.h>
#include <time.h>
#define STRINGBUFLEN 256 #define STRINGBUFLEN 256

View file

@ -23,7 +23,6 @@
#define COMMON_STACK_H #define COMMON_STACK_H
#include "common/scummsys.h" #include "common/scummsys.h"
#include <assert.h>
#include "common/array.h" #include "common/array.h"
namespace Common { namespace Common {

View file

@ -25,8 +25,6 @@
#include "common/hash-str.h" #include "common/hash-str.h"
#include "common/util.h" #include "common/util.h"
#include <ctype.h>
namespace Common { namespace Common {
#if !(defined(PALMOS_ARM) || defined(PALMOS_DEBUG) || defined(__GP32__)) #if !(defined(PALMOS_ARM) || defined(PALMOS_DEBUG) || defined(__GP32__))

View file

@ -25,9 +25,6 @@
#include "common/scummsys.h" #include "common/scummsys.h"
#include "common/array.h" #include "common/array.h"
#include <assert.h>
#include <string.h>
namespace Common { namespace Common {
/** /**

View file

@ -28,8 +28,6 @@
#include "sound/mididrv.h" #include "sound/mididrv.h"
#include "sound/midiparser.h" #include "sound/midiparser.h"
#include <stdio.h>
namespace AGOS { namespace AGOS {
/** /**

View file

@ -24,7 +24,7 @@
#define SCUMM_SAVELOAD_H #define SCUMM_SAVELOAD_H
#include "common/scummsys.h" #include "common/scummsys.h"
#include <stddef.h> #include <stddef.h> // for ptrdiff_t
namespace Common { namespace Common {
class InSaveFile; class InSaveFile;

View file

@ -25,8 +25,6 @@
#include "gui/dialog.h" #include "gui/dialog.h"
#include "gui/newgui.h" #include "gui/newgui.h"
#include <stdarg.h>
namespace GUI { namespace GUI {
class ScrollBarWidget; class ScrollBarWidget;