Deleted Added
full compact
kbdcontrol.c (65759) kbdcontrol.c (66834)
1/*-
2 * Copyright (c) 1994-1995 S�ren Schmidt
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef lint
30static const char rcsid[] =
1/*-
2 * Copyright (c) 1994-1995 S�ren Schmidt
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef lint
30static const char rcsid[] =
31 "$FreeBSD: head/usr.sbin/kbdcontrol/kbdcontrol.c 65759 2000-09-11 20:37:42Z dwmalone $";
31 "$FreeBSD: head/usr.sbin/kbdcontrol/kbdcontrol.c 66834 2000-10-08 21:34:00Z phk $";
32#endif /* not lint */
33
34#include <ctype.h>
35#include <err.h>
36#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39#include <unistd.h>
40#include <fcntl.h>
32#endif /* not lint */
33
34#include <ctype.h>
35#include <err.h>
36#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39#include <unistd.h>
40#include <fcntl.h>
41#include <machine/console.h>
41#include <sys/kbio.h>
42#include <sys/consio.h>
42#include "path.h"
43#include "lex.h"
44
45char ctrl_names[32][4] = {
46 "nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel",
47 "bs ", "ht ", "nl ", "vt ", "ff ", "cr ", "so ", "si ",
48 "dle", "dc1", "dc2", "dc3", "dc4", "nak", "syn", "etb",
49 "can", "em ", "sub", "esc", "fs ", "gs ", "rs ", "us "

--- 1069 unchanged lines hidden ---
43#include "path.h"
44#include "lex.h"
45
46char ctrl_names[32][4] = {
47 "nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel",
48 "bs ", "ht ", "nl ", "vt ", "ff ", "cr ", "so ", "si ",
49 "dle", "dc1", "dc2", "dc3", "dc4", "nak", "syn", "etb",
50 "can", "em ", "sub", "esc", "fs ", "gs ", "rs ", "us "

--- 1069 unchanged lines hidden ---