diff options
author | okan | 2013-04-08 00:56:21 +0000 |
---|---|---|
committer | okan | 2013-04-08 00:56:21 +0000 |
commit | 08db9c49019f52bc15fdaccb43fe0d1d75d91a47 (patch) | |
tree | 8aa1958b1d9fe7f9be525359f14d6e1ccdd80cec /menu.c | |
parent | f266f52c9db95d0361a427c672323017a083e9d6 (diff) | |
download | cwm-08db9c49019f52bc15fdaccb43fe0d1d75d91a47.tar.gz |
missing prototype
Diffstat (limited to '')
-rw-r--r-- | menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 *); |