Deleted Added
full compact
globals.h (144341) globals.h (145627)
1/*-
2 * Copyright (c) 1988, 1989, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1989 by Berkeley Softworks
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.

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

30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
1/*-
2 * Copyright (c) 1988, 1989, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1989 by Berkeley Softworks
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.

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

30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * $FreeBSD: head/usr.bin/make/globals.h 144341 2005-03-30 15:18:58Z harti $
38 * $FreeBSD: head/usr.bin/make/globals.h 145627 2005-04-28 15:37:25Z harti $
39 */
40
41#ifndef globals_h_1c1edb96
42#define globals_h_1c1edb96
43
44/*
45 * Global Variables
46 */
47
48#include <time.h>
39 */
40
41#ifndef globals_h_1c1edb96
42#define globals_h_1c1edb96
43
44/*
45 * Global Variables
46 */
47
48#include <time.h>
49#include <stdint.h>
49
50#include "lst.h"
51#include "sprite.h"
52
53struct GNode;
54struct Path;
55
56/*

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

114
115/* The time at the start of this whole process */
116extern time_t now;
117
118extern Boolean oldVars; /* Do old-style variable substitution */
119
120extern int debug;
121
50
51#include "lst.h"
52#include "sprite.h"
53
54struct GNode;
55struct Path;
56
57/*

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

115
116/* The time at the start of this whole process */
117extern time_t now;
118
119extern Boolean oldVars; /* Do old-style variable substitution */
120
121extern int debug;
122
123/* warning flags */
124extern uint32_t warnflags;
125
122#endif /* globals_h_1c1edb96 */
126#endif /* globals_h_1c1edb96 */