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:
authorDaniel Dunbar <daniel@zuster.org>2006-04-05 00:37:08 +0400
committerDaniel Dunbar <daniel@zuster.org>2006-04-05 00:37:08 +0400
commit21ca6c3db825ce88f797348d4d15a3f569f283bc (patch)
tree511f6ac1bb2edc085a869b603f5f8e65f173cd7e
parent3be66f6d8ddf9e4661fb35530887f98536158241 (diff)
- properly prototype dummy fnmatch to match call
-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