missing proto

This commit is contained in:
okan 2013-04-30 21:11:07 +00:00
parent 6e8f1f2955
commit ff6f5301f0

View File

@ -38,6 +38,8 @@
static void search_match_path(struct menu_q *, struct menu_q *, static void search_match_path(struct menu_q *, struct menu_q *,
char *, int); char *, int);
static void search_match_path_exec(struct menu_q *, struct menu_q *,
char *);
static int strsubmatch(char *, char *, int); static int strsubmatch(char *, char *, int);
/* /*
@ -192,7 +194,7 @@ search_match_path(struct menu_q *menuq, struct menu_q *resultq, char *search, in
globfree(&g); globfree(&g);
} }
void static void
search_match_path_exec(struct menu_q *menuq, struct menu_q *resultq, char *search) search_match_path_exec(struct menu_q *menuq, struct menu_q *resultq, char *search)
{ {
return (search_match_path(menuq, resultq, search, PATH_EXEC)); return (search_match_path(menuq, resultq, search, PATH_EXEC));