summaryrefslogtreecommitdiff
path: root/src/lib/embryo/embryo_str.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/embryo/embryo_str.c')
-rw-r--r--src/lib/embryo/embryo_str.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/embryo/embryo_str.c b/src/lib/embryo/embryo_str.c
index 6fafa83db0..555dc24f7c 100644
--- a/src/lib/embryo/embryo_str.c
+++ b/src/lib/embryo/embryo_str.c
@@ -14,7 +14,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
-#include <fnmatch.h>
+#include <Eina.h>
#include <Eina.h>
@@ -61,7 +61,7 @@ _embryo_str_fnmatch(Embryo_Program *ep, Embryo_Cell *params)
STRGET(ep, s1, params[1]);
STRGET(ep, s2, params[2]);
if ((!s1) || (!s2)) return -1;
- return (Embryo_Cell)fnmatch(s1, s2, 0);
+ return (Embryo_Cell)eina_fnmatch(s1, s2, 0);
}
static Embryo_Cell