diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-04-08 00:56:22 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-04-08 00:56:22 +0000 |
commit | 4902d39cd234b2fd466b62dd5d7bd5f4392944a3 (patch) | |
tree | 580951adbef9f9921fd0ffeccb4e949168b05d99 /app/cwm/menu.c | |
parent | 4d5223d41a59ca958a4b7d498ad4cb8409fb52e2 (diff) |
missing prototype
Diffstat (limited to 'app/cwm/menu.c')
-rw-r--r-- | app/cwm/menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/cwm/menu.c b/app/cwm/menu.c index 98f8b89df..6b8d4841a 100644 --- a/app/cwm/menu.c +++ b/app/cwm/menu.c @@ -16,7 +16,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: menu.c,v 1.52 2013/04/05 17:07:25 okan Exp $ + * $OpenBSD: menu.c,v 1.53 2013/04/08 00:56:21 okan Exp $ */ #include <sys/param.h> @@ -74,6 +74,7 @@ static void menu_draw_entry(struct screen_ctx *, struct menu_ctx *, struct menu_q *, int, int); static int menu_calc_entry(struct screen_ctx *, struct menu_ctx *, int, int); +static struct menu *menu_complete_path(struct menu_ctx *); static int menu_keycode(XKeyEvent *, enum ctltype *, char *); |