diff options
author | Max Horn | 2003-09-11 10:10:38 +0000 |
---|---|---|
committer | Max Horn | 2003-09-11 10:10:38 +0000 |
commit | a3bb9f81e0502f66e368b5e58861ffbb5cfdcd41 (patch) | |
tree | 381f954691e73efc1575153282c22f3541ea333f | |
parent | c8876de19265602acf188b22d8423af3e4fb9e47 (diff) | |
download | scummvm-rg350-a3bb9f81e0502f66e368b5e58861ffbb5cfdcd41.tar.gz scummvm-rg350-a3bb9f81e0502f66e368b5e58861ffbb5cfdcd41.tar.bz2 scummvm-rg350-a3bb9f81e0502f66e368b5e58861ffbb5cfdcd41.zip |
added time.h and math.h to default/precompiled headers
svn-id: r10168
-rw-r--r-- | common/stdafx.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/stdafx.h b/common/stdafx.h index af23816b01..40e59952ed 100644 --- a/common/stdafx.h +++ b/common/stdafx.h @@ -86,6 +86,8 @@ #include <ctype.h> #include <winuser.h> #include <direct.h> +#include <time.h> +#include <math.h> #else @@ -110,6 +112,8 @@ #include <stdarg.h> #include <assert.h> #include <ctype.h> +#include <time.h> +#include <math.h> #endif |