Deleted Added
full compact
mksyntax.c (214305) mksyntax.c (214512)
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41static char sccsid[] = "@(#)mksyntax.c 8.2 (Berkeley) 5/4/95";
42#endif /* not lint */
43#endif
44#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41static char sccsid[] = "@(#)mksyntax.c 8.2 (Berkeley) 5/4/95";
42#endif /* not lint */
43#endif
44#include <sys/cdefs.h>
45__FBSDID("$FreeBSD: head/bin/sh/mksyntax.c 214305 2010-10-24 22:25:38Z jilles $");
45__FBSDID("$FreeBSD: head/bin/sh/mksyntax.c 214512 2010-10-29 13:42:18Z jilles $");
46
47/*
48 * This program creates syntax.h and syntax.c.
49 */
50
51#include <stdio.h>
52#include <stdlib.h>
53#include <string.h>

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

280 syntax[base + CTLESC] = "CCTL";
281 syntax[base + CTLVAR] = "CCTL";
282 syntax[base + CTLENDVAR] = "CCTL";
283 syntax[base + CTLBACKQ] = "CCTL";
284 syntax[base + CTLBACKQ + CTLQUOTE] = "CCTL";
285 syntax[base + CTLARI] = "CCTL";
286 syntax[base + CTLENDARI] = "CCTL";
287 syntax[base + CTLQUOTEMARK] = "CCTL";
46
47/*
48 * This program creates syntax.h and syntax.c.
49 */
50
51#include <stdio.h>
52#include <stdlib.h>
53#include <string.h>

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

280 syntax[base + CTLESC] = "CCTL";
281 syntax[base + CTLVAR] = "CCTL";
282 syntax[base + CTLENDVAR] = "CCTL";
283 syntax[base + CTLBACKQ] = "CCTL";
284 syntax[base + CTLBACKQ + CTLQUOTE] = "CCTL";
285 syntax[base + CTLARI] = "CCTL";
286 syntax[base + CTLENDARI] = "CCTL";
287 syntax[base + CTLQUOTEMARK] = "CCTL";
288 syntax[base + CTLQUOTEEND] = "CCTL";
288}
289
290
291/*
292 * Add entries to the syntax table.
293 */
294
295static void

--- 98 unchanged lines hidden ---
289}
290
291
292/*
293 * Add entries to the syntax table.
294 */
295
296static void

--- 98 unchanged lines hidden ---