Deleted Added
full compact
yacc.y (142582) yacc.y (146261)
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 *

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

37
38#ifndef lint
39#if 0
40static char sccsid[] = "@(#)yacc.y 8.1 (Berkeley) 6/6/93";
41#endif /* 0 */
42#endif /* not lint */
43
44#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 *

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

37
38#ifndef lint
39#if 0
40static char sccsid[] = "@(#)yacc.y 8.1 (Berkeley) 6/6/93";
41#endif /* 0 */
42#endif /* not lint */
43
44#include <sys/cdefs.h>
45__FBSDID("$FreeBSD: head/usr.bin/mklocale/yacc.y 142582 2005-02-26 21:47:54Z ru $");
45__FBSDID("$FreeBSD: head/usr.bin/mklocale/yacc.y 146261 2005-05-16 09:32:41Z ru $");
46
47#include <arpa/inet.h>
48
49#include <ctype.h>
50#include <err.h>
46
47#include <arpa/inet.h>
48
49#include <ctype.h>
50#include <err.h>
51#include <runefile.h>
52#include <stddef.h>
53#include <stdio.h>
54#include <stdlib.h>
55#include <string.h>
56#include <unistd.h>
57
58#include "ldef.h"
59#include "extern.h"
51#include <stddef.h>
52#include <stdio.h>
53#include <stdlib.h>
54#include <string.h>
55#include <unistd.h>
56
57#include "ldef.h"
58#include "extern.h"
59#include "runefile.h"
60
61static void *xmalloc(unsigned int sz);
62static uint32_t *xlalloc(unsigned int sz);
63void yyerror(const char *s);
64static uint32_t *xrelalloc(uint32_t *old, unsigned int sz);
65static void dump_tables(void);
66static void cleanout(void);
67

--- 818 unchanged lines hidden ---
60
61static void *xmalloc(unsigned int sz);
62static uint32_t *xlalloc(unsigned int sz);
63void yyerror(const char *s);
64static uint32_t *xrelalloc(uint32_t *old, unsigned int sz);
65static void dump_tables(void);
66static void cleanout(void);
67

--- 818 unchanged lines hidden ---