Commit 00bcbe8a authored by Gildas Bazin's avatar Gildas Bazin

* src/misc/modules.c: MSVC compilation fix.

parent 49ee8d5b
......@@ -39,10 +39,6 @@
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#elif defined( UNDER_CE )
# include <windows.h> /* GetFileAttributes() */
#else
# include "../extras/dirent.h"
#endif
#ifdef HAVE_SYS_TYPES_H
......@@ -124,7 +120,7 @@
#endif
#include "network.h"
#if defined( WIN32) || defined( UNDER_CE )
#if defined( WIN32 ) || defined( UNDER_CE )
/* Avoid name collisions */
# define LoadModule(a,b,c) _LoadModule(a,b,c)
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment