summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-12-29 21:31:35 +0000
committerJo-Philipp Wich <jow@openwrt.org>2013-12-29 21:34:56 +0000
commitcd5db769d8b77dd540db44a095d09edb3153e2d8 (patch)
tree6d7d88772bcdca4924b1f7dff3b63051c7a0906f
parentd7e77a322e98474071e850bbaaac46528abb81e8 (diff)
downloadjsonpath-cd5db769d8b77dd540db44a095d09edb3153e2d8.tar.gz
parser: fix order of declarations
-rw-r--r--parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.y b/parser.y
index acca9e1..f5e8966 100644
--- a/parser.y
+++ b/parser.y
@@ -41,7 +41,7 @@ void yyerror(struct jp_state *s, const char *msg);
%parse-param { struct jp_state *s }
%lex-param { struct jp_state *s }
-%code provides {
+%code requires {
#ifndef __PARSER_H_
#define __PARSER_H_