added some forgotten includes to avoid warnings

This commit is contained in:
zicodxx 2007-01-25 10:05:14 +00:00
parent 47ae8bc0de
commit 363a7afd48

View file

@ -22,6 +22,13 @@ COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#ifdef __unix__
#include <sys/stat.h>
#include <sys/types.h>
#endif
#ifdef _WIN32
#include <dir.h>
#endif
#ifndef _MSC_VER
#include <unistd.h>
#else