Mikhail Zvyozdochkin: Fix compiling on linux (adding missing headers inclusion)

svn path=/trunk/; revision=22785
This commit is contained in:
Aleksey Bragin 2006-07-02 22:03:40 +00:00
parent feaabba4dc
commit d063cd0281
2 changed files with 3 additions and 0 deletions

View file

@ -32,6 +32,8 @@
#ifndef MAX_PATH
#define MAX_PATH _MAX_PATH
#endif//MAX_PATH
#else
#include <unistd.h>
#endif//WIN32
#include <stdarg.h>

View file

@ -25,6 +25,7 @@
#include "ssprintf.h"
#ifndef WIN32
#include <ctype.h>
#define _finite __finite
#define _isnan __isnan
inline int iswdigit ( wchar_t c )