Module Name: src
Committed By: rillig
Date: Wed Nov 4 03:13:46 UTC 2020
Modified Files:
src/usr.bin/make: make.h
Log Message:
make(1): add missing enum tag for GNodeMade
To generate a diff of this commit:
cvs rdiff -u -r1.180 -r1.181 src/usr.bin/make/make.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/make.h
diff -u src/usr.bin/make/make.h:1.180 src/usr.bin/make/make.h:1.181
--- src/usr.bin/make/make.h:1.180 Wed Nov 4 02:57:42 2020
+++ src/usr.bin/make/make.h Wed Nov 4 03:13:46 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: make.h,v 1.180 2020/11/04 02:57:42 rillig Exp $ */
+/* $NetBSD: make.h,v 1.181 2020/11/04 03:13:46 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -171,7 +171,7 @@ typedef int Boolean;
#include "buf.h"
#include "make_malloc.h"
-typedef enum {
+typedef enum GNodeMade {
UNMADE, /* Not examined yet */
DEFERRED, /* Examined once (building child) */
REQUESTED, /* on toBeMade list */
@@ -456,7 +456,7 @@ extern SearchPath *defSysIncPath; /* The
extern char curdir[]; /* Startup directory */
extern char *progname; /* The program name */
extern char *makeDependfile; /* .depend */
-extern char **savedEnv; /* if we replaced environ this will be non-NULL */
+extern char **savedEnv; /* if we replaced environ this will be non-NULL */
extern int makelevel;