Deleted Added
full compact
nslexer.l (225736) nslexer.l (252181)
1%{
2/* $NetBSD: nslexer.l,v 1.3 1999/01/25 00:16:17 lukem Exp $ */
3
4/*-
5 * Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation

--- 26 unchanged lines hidden (view full) ---

35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40#include <sys/cdefs.h>
41#if defined(LIBC_SCCS) && !defined(lint)
42static char *rcsid =
1%{
2/* $NetBSD: nslexer.l,v 1.3 1999/01/25 00:16:17 lukem Exp $ */
3
4/*-
5 * Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation

--- 26 unchanged lines hidden (view full) ---

35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40#include <sys/cdefs.h>
41#if defined(LIBC_SCCS) && !defined(lint)
42static char *rcsid =
43 "$FreeBSD: stable/9/lib/libc/net/nslexer.l 213785 2010-10-13 16:57:06Z rpaulo $";
43 "$FreeBSD: stable/9/lib/libc/net/nslexer.l 252181 2013-06-24 21:33:19Z marius $";
44#endif /* LIBC_SCCS and not lint */
45
46#include "namespace.h"
47#include <ctype.h>
48#define _NS_PRIVATE
49#include <nsswitch.h>
50#include <string.h>
51#include <syslog.h>
52#include "un-namespace.h"
53
54#include "nsparser.h"
55
44#endif /* LIBC_SCCS and not lint */
45
46#include "namespace.h"
47#include <ctype.h>
48#define _NS_PRIVATE
49#include <nsswitch.h>
50#include <string.h>
51#include <syslog.h>
52#include "un-namespace.h"
53
54#include "nsparser.h"
55
56#define YY_NO_INPUT
57#define YY_NO_UNPUT
58
59%}
60
56%}
57
58%option noinput
59%option nounput
61%option yylineno
62
63BLANK [ \t]
64CR \n
65STRING [a-zA-Z][a-zA-Z0-9_]*
66
67%%
68

--- 52 unchanged lines hidden ---
60%option yylineno
61
62BLANK [ \t]
63CR \n
64STRING [a-zA-Z][a-zA-Z0-9_]*
65
66%%
67

--- 52 unchanged lines hidden ---