Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/src/filesel.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/src/filesel.c b/source/blender/src/filesel.c
index 003fee46173..aba7f4036fd 100644
--- a/source/blender/src/filesel.c
+++ b/source/blender/src/filesel.c
@@ -109,7 +109,10 @@
#include "BIF_fsmenu.h" /* include ourselves */
#if defined WIN32 || defined __BeOS
- int fnmatch(){return 0;}
+int fnmatch(const char *pattern, const char *string, int flags)
+{
+ return 0;
+}
#else
#include <fnmatch.h>
#endif