Deleted Added
full compact
db_lex.c (116176) db_lex.c (139747)
1/*
1/*-
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the
9 * software, derivative works or modified versions, and any portions

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

27 * Author: David B. Golub, Carnegie Mellon University
28 * Date: 7/90
29 */
30/*
31 * Lexical analyzer.
32 */
33
34#include <sys/cdefs.h>
2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
4 * All Rights Reserved.
5 *
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the
9 * software, derivative works or modified versions, and any portions

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

27 * Author: David B. Golub, Carnegie Mellon University
28 * Date: 7/90
29 */
30/*
31 * Lexical analyzer.
32 */
33
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/ddb/db_lex.c 116176 2003-06-10 22:09:23Z obrien $");
35__FBSDID("$FreeBSD: head/sys/ddb/db_lex.c 139747 2005-01-06 01:34:41Z imp $");
36
37#include <sys/param.h>
38
39#include <ddb/ddb.h>
40#include <ddb/db_lex.h>
41
42static char db_line[120];
43static char * db_lp, *db_endlp;

--- 242 unchanged lines hidden ---
36
37#include <sys/param.h>
38
39#include <ddb/ddb.h>
40#include <ddb/db_lex.h>
41
42static char db_line[120];
43static char * db_lp, *db_endlp;

--- 242 unchanged lines hidden ---