Windows/dirent.c: include stddef.h for MSVC to get intptr_t.

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@239 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2010-07-25 08:28:27 +00:00
parent 70dc6cb641
commit a35b89930d
1 changed files with 3 additions and 1 deletions

View File

@ -8,9 +8,11 @@
*/
#include <stddef.h> /* for intptr_t under MSVC */
/*#include <stdint.h>*/
#include <dirent.h>
#include <errno.h>
#include <io.h> /* _findfirst and _findnext set errno iff they return -1 */
#include <io.h> /* _findfirst and _findnext set errno if they return -1 */
#include <stdlib.h>
#include <string.h>