Deleted Added
full compact
lex.l (216370) lex.l (250926)
1%{
2/*-
3 * Copyright (c) 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Paul Borman at Krystal Technologies.
8 *

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

33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)lex.l 8.1 (Berkeley) 6/6/93";
37#endif
38#endif /* not lint */
39
40#include <sys/cdefs.h>
1%{
2/*-
3 * Copyright (c) 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Paul Borman at Krystal Technologies.
8 *

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

33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)lex.l 8.1 (Berkeley) 6/6/93";
37#endif
38#endif /* not lint */
39
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/usr.bin/mklocale/lex.l 216370 2010-12-11 08:32:16Z joel $");
41__FBSDID("$FreeBSD: head/usr.bin/mklocale/lex.l 250926 2013-05-23 05:42:35Z jkim $");
42
43#include <ctype.h>
44#include <stdio.h>
45#include <stdlib.h>
46
47#include "ldef.h"
48#include "y.tab.h"
49#include "extern.h"
42
43#include <ctype.h>
44#include <stdio.h>
45#include <stdlib.h>
46
47#include "ldef.h"
48#include "y.tab.h"
49#include "extern.h"
50
51#define YY_DECL int yylex(void)
50%}
51
52ODIGIT [0-7]
53DIGIT [0-9]
54XDIGIT [0-9a-fA-F]
55W [\t\n\r ]
56
57%%

--- 116 unchanged lines hidden ---
52%}
53
54ODIGIT [0-7]
55DIGIT [0-9]
56XDIGIT [0-9a-fA-F]
57W [\t\n\r ]
58
59%%

--- 116 unchanged lines hidden ---