diff options
author | okan | 2013-04-30 21:11:07 +0000 |
---|---|---|
committer | okan | 2013-04-30 21:11:07 +0000 |
commit | 5bd12bbde2f2324d3d74b167a22959c37d00ebf5 (patch) | |
tree | b44345dcf0e7ce33c26842c394d6a4fc82b1c6d8 /search.c | |
parent | 1bd549b8aba1bd1064e2e5bfbeefe36607b8b3c5 (diff) | |
download | cwm-5bd12bbde2f2324d3d74b167a22959c37d00ebf5.tar.gz |
missing proto
Diffstat (limited to 'search.c')
-rw-r--r-- | search.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: search.c,v 1.30 2013/04/05 17:36:02 okan Exp $ + * $OpenBSD: search.c,v 1.31 2013/04/30 21:11:07 okan Exp $ */ #include <sys/param.h> @@ -38,6 +38,8 @@ static void search_match_path(struct menu_q *, struct menu_q *, char *, int); +static void search_match_path_exec(struct menu_q *, struct menu_q *, + char *); 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); } -void +static void search_match_path_exec(struct menu_q *menuq, struct menu_q *resultq, char *search) { return (search_match_path(menuq, resultq, search, PATH_EXEC)); |