Use another main rule to avoid a conflict in the grammar.
Suggestion from martin@.
This commit is contained in:
parent
3856acafe2
commit
8259fb204b
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: config_yacc.y,v 1.1 2007/10/07 04:16:48 xtraeme Exp $ */
|
/* $NetBSD: config_yacc.y,v 1.2 2007/10/07 13:46:22 xtraeme Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2007 Juan Romero Pardines.
|
* Copyright (c) 2007 Juan Romero Pardines.
|
||||||
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
__RCSID("$NetBSD: config_yacc.y,v 1.1 2007/10/07 04:16:48 xtraeme Exp $");
|
__RCSID("$NetBSD: config_yacc.y,v 1.2 2007/10/07 13:46:22 xtraeme Exp $");
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -64,9 +64,12 @@ static prop_dictionary_t kdict;
|
|||||||
|
|
||||||
%%
|
%%
|
||||||
|
|
||||||
main : { exit(EXIT_SUCCESS); }
|
main : devices
|
||||||
| device
|
| { exit(EXIT_SUCCESS); }
|
||||||
| main device
|
;
|
||||||
|
|
||||||
|
devices : device
|
||||||
|
| devices device
|
||||||
;
|
;
|
||||||
|
|
||||||
device : STRING LBRACE sensors RBRACE
|
device : STRING LBRACE sensors RBRACE
|
||||||
|
Loading…
Reference in New Issue
Block a user