Deleted Added
full compact
db_lex.c (26639) db_lex.c (36735)
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 unchanged lines hidden (view full) ---

18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 *
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 unchanged lines hidden (view full) ---

18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
22 *
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
25 *
26 * $Id: db_lex.c,v 1.13 1997/02/22 09:28:25 peter Exp $
26 * $Id: db_lex.c,v 1.14 1997/06/14 11:52:36 bde Exp $
27 */
28
29/*
30 * Author: David B. Golub, Carnegie Mellon University
31 * Date: 7/90
32 */
33/*
34 * Lexical analyzer.

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

112 else
113 t = db_lex();
114 return (t);
115}
116
117int db_tok_number;
118char db_tok_string[TOK_STRING_SIZE];
119
27 */
28
29/*
30 * Author: David B. Golub, Carnegie Mellon University
31 * Date: 7/90
32 */
33/*
34 * Lexical analyzer.

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

112 else
113 t = db_lex();
114 return (t);
115}
116
117int db_tok_number;
118char db_tok_string[TOK_STRING_SIZE];
119
120int db_radix = 16;
120long db_radix = 16;
121
122void
123db_flush_lex()
124{
125 db_flush_line();
126 db_look_char = 0;
127 db_look_token = 0;
128}

--- 156 unchanged lines hidden ---
121
122void
123db_flush_lex()
124{
125 db_flush_line();
126 db_look_char = 0;
127 db_look_token = 0;
128}

--- 156 unchanged lines hidden ---