diff options
Diffstat (limited to 'usr.bin/make/cond.c')
-rw-r--r-- | usr.bin/make/cond.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/make/cond.c b/usr.bin/make/cond.c index 2def8dc..cd264ff 100644 --- a/usr.bin/make/cond.c +++ b/usr.bin/make/cond.c @@ -181,9 +181,9 @@ CondGetArg (linePtr, argPtr, func, parens) char *func; Boolean parens; /* TRUE if arg should be bounded by parens */ { - register char *cp; + char *cp; int argLen; - register Buffer buf; + Buffer buf; cp = *linePtr; if (parens) { @@ -438,11 +438,11 @@ CondDoTarget (argLen, arg) */ static char * CondCvtArg(str, value) - register char *str; + char *str; double *value; { if ((*str == '0') && (str[1] == 'x')) { - register long i; + long i; for (str += 2, i = 0; ; str++) { int x; |