Build bustage, io.h only exists on windows.

This commit is contained in:
benjamin%smedbergs.us 2006-09-12 18:50:10 +00:00
Родитель 94ccd8159a
Коммит cf9c92bd85
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -43,9 +43,12 @@
#include "nsDebug.h" #include "nsDebug.h"
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
#include <io.h>
#include <stdarg.h> #include <stdarg.h>
#ifdef XP_WIN
#include <io.h>
#endif
const char* const char*
NS_strspnp(const char *delims, const char *str) NS_strspnp(const char *delims, const char *str)
{ {