Deleted Added
sdiff udiff text old ( 147073 ) new ( 149399 )
full compact
1/* $OpenBSD: conflex.c,v 1.7 2004/09/15 19:02:38 deraadt Exp $ */
2
3/* Lexical scanner for dhcpd config file... */
4
5/*
6 * Copyright (c) 1995, 1996, 1997 The Internet Software Consortium.
7 * All rights reserved.
8 *

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

35 *
36 * This software has been written for the Internet Software Consortium
37 * by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
38 * Enterprises. To learn more about the Internet Software Consortium,
39 * see ``http://www.vix.com/isc''. To learn more about Vixie
40 * Enterprises, see ``http://www.vix.com''.
41 */
42
43#include <ctype.h>
44
45#include "dhcpd.h"
46#include "dhctoken.h"
47
48int lexline;
49int lexchar;
50char *token_line;

--- 475 unchanged lines hidden ---