Deleted Added
full compact
configparser.y (268839) configparser.y (268883)
1/*
2 * configparser.y -- yacc grammar for unbound configuration files
3 *
4 * Copyright (c) 2001-2006, NLnet Labs. All rights reserved.
5 *
6 * Copyright (c) 2007, NLnet Labs. All rights reserved.
7 *
8 * This software is open source.

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

39#include "config.h"
40
41#include <stdarg.h>
42#include <stdio.h>
43#include <string.h>
44#include <stdlib.h>
45#include <assert.h>
46
1/*
2 * configparser.y -- yacc grammar for unbound configuration files
3 *
4 * Copyright (c) 2001-2006, NLnet Labs. All rights reserved.
5 *
6 * Copyright (c) 2007, NLnet Labs. All rights reserved.
7 *
8 * This software is open source.

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

39#include "config.h"
40
41#include <stdarg.h>
42#include <stdio.h>
43#include <string.h>
44#include <stdlib.h>
45#include <assert.h>
46
47#include "util/configyyrename.h"
48#include "util/config_file.h"
49#include "util/net_help.h"
50
51int ub_c_lex(void);
52void ub_c_error(const char *message);
53
54/* these need to be global, otherwise they cannot be used inside yacc */
55extern struct config_parser_state* cfg_parser;

--- 1264 unchanged lines hidden ---
47#include "util/config_file.h"
48#include "util/net_help.h"
49
50int ub_c_lex(void);
51void ub_c_error(const char *message);
52
53/* these need to be global, otherwise they cannot be used inside yacc */
54extern struct config_parser_state* cfg_parser;

--- 1264 unchanged lines hidden ---