diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 09:45:38 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-09-17 09:45:38 +0000 |
commit | 080ba9b945de53f4e7afb465e44989ee2c339e70 (patch) | |
tree | a3c43737d124524aeacfd967cf4db262d0d03d96 /usr.bin | |
parent | a6237e9b62bb20748d77c73b62ed87c5e10aee6f (diff) |
more zap spaces
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/make/parse.c | 4 | ||||
-rw-r--r-- | usr.bin/make/var.c | 4 | ||||
-rw-r--r-- | usr.bin/make/var.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c index 227071916e4..cfe337caae2 100644 --- a/usr.bin/make/parse.c +++ b/usr.bin/make/parse.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: parse.c,v 1.87 2007/09/17 09:44:20 espie Exp $ */ +/* $OpenBSD: parse.c,v 1.88 2007/09/17 09:45:37 espie Exp $ */ /* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */ /* @@ -1616,7 +1616,7 @@ Parse_Init(void) Static_Lst_Init(sysIncPath); Array_Init(&gsources, SOURCES_SIZE); Array_Init(>argets, TARGETS_SIZE); - + LowParse_Init(); #ifdef CLEANUP Static_Lst_Init(&targCmds); diff --git a/usr.bin/make/var.c b/usr.bin/make/var.c index 2a89d8ef243..84bc72d3383 100644 --- a/usr.bin/make/var.c +++ b/usr.bin/make/var.c @@ -1,5 +1,5 @@ /* $OpenPackages$ */ -/* $OpenBSD: var.c,v 1.78 2007/09/17 09:44:20 espie Exp $ */ +/* $OpenBSD: var.c,v 1.79 2007/09/17 09:45:37 espie Exp $ */ /* $NetBSD: var.c,v 1.18 1997/03/18 19:24:46 christos Exp $ */ /* @@ -191,7 +191,7 @@ typedef struct Var_ { #define VAR_FROM_ENV 8 /* Special source: environment */ #define VAR_SEEN_ENV 16 /* No need to go look up environment again */ #define VAR_SHELL 32 /* Magic behavior */ - + #define POISONS (POISON_NORMAL | POISON_EMPTY | POISON_NOT_DEFINED) /* Defined in var.h */ char name[1]; /* the variable's name */ diff --git a/usr.bin/make/var.h b/usr.bin/make/var.h index eb17b1b961d..b2e20d2ddd8 100644 --- a/usr.bin/make/var.h +++ b/usr.bin/make/var.h @@ -101,7 +101,7 @@ extern char *Var_Parse(const char *, SymTable *, bool, size_t *, bool *); /* Note that var_Error is an instance of the empty string "", so that * callers who don't care don't need to. */ -extern char var_Error[]; +extern char var_Error[]; /* ok = Var_ParseSkip(&varspec, ctxt, &ok); * Parses a variable specification and returns true if the varspec |