Deleted Added
full compact
config.h (219819) config.h (235789)
1/*
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. 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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)config.h 8.1 (Berkeley) 6/6/93
1/*
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. 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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)config.h 8.1 (Berkeley) 6/6/93
30 * $FreeBSD: head/usr.sbin/config/config.h 219819 2011-03-21 09:40:01Z jeff $
30 * $FreeBSD: head/usr.sbin/config/config.h 235789 2012-05-22 16:33:10Z bapt $
31 */
32
33/*
34 * Config.
35 */
36#include <sys/types.h>
37#include <sys/queue.h>
38#include <stdlib.h>

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

166extern int incignore;
167
168char *get_word(FILE *);
169char *get_quoted_word(FILE *);
170char *path(const char *);
171char *raisestr(char *);
172void remember(const char *);
173void moveifchanged(const char *, const char *);
31 */
32
33/*
34 * Config.
35 */
36#include <sys/types.h>
37#include <sys/queue.h>
38#include <stdlib.h>

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

166extern int incignore;
167
168char *get_word(FILE *);
169char *get_quoted_word(FILE *);
170char *path(const char *);
171char *raisestr(char *);
172void remember(const char *);
173void moveifchanged(const char *, const char *);
174int yyparse(void);
175int yylex(void);
176void options(void);
177void makefile(void);
178void makeenv(void);
179void makehints(void);
180void headers(void);
181void cfgfile_add(const char *);
182void cfgfile_removeall(void);

--- 23 unchanged lines hidden ---
174int yylex(void);
175void options(void);
176void makefile(void);
177void makeenv(void);
178void makehints(void);
179void headers(void);
180void cfgfile_add(const char *);
181void cfgfile_removeall(void);

--- 23 unchanged lines hidden ---