projects
/
blender.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3be66f6
)
- properly prototype dummy fnmatch to match call
author
Daniel Dunbar <daniel@zuster.org>
Tue, 4 Apr 2006 20:37:08 +0000
(20:37 +0000)
committer
Daniel Dunbar <daniel@zuster.org>
Tue, 4 Apr 2006 20:37:08 +0000
(20:37 +0000)
source/blender/src/filesel.c
patch
|
blob
|
history
diff --git
a/source/blender/src/filesel.c
b/source/blender/src/filesel.c
index 003fee46173860388b8168f95596aec1cc2a67b6..aba7f4036fd2428612bc74d2f2d9be93ebd95546 100644
(file)
--- 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