Move common includes from precompiled.h to platform.h

This commit is contained in:
dhewg 2011-12-16 23:01:59 +01:00 committed by Daniel Gibson
parent 7d52a803ab
commit e522e719dd
2 changed files with 12 additions and 12 deletions

View file

@ -63,18 +63,6 @@ If you have questions concerning this license or the applicable additional terms
#define NDEBUG
#endif
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <assert.h>
#include <time.h>
#include <ctype.h>
#include <typeinfo>
#include <errno.h>
#include <math.h>
//-----------------------------------------------------
// non-portable system services

View file

@ -196,6 +196,18 @@ If you have questions concerning this license or the applicable additional terms
#define id_attribute(x)
#endif
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <assert.h>
#include <time.h>
#include <ctype.h>
#include <typeinfo>
#include <errno.h>
#include <math.h>
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>