--- src/usr.bin/make/make.c 2004/11/12 21:52:04 1.5 +++ src/usr.bin/make/make.c 2004/11/12 22:02:51 1.6 @@ -145,7 +145,7 @@ MakeTimeStamp (pgn, cgn) */ Boolean Make_OODate (gn) - register GNode *gn; /* the node to check */ + GNode *gn; /* the node to check */ { Boolean oodate; @@ -321,11 +321,11 @@ MakeAddChild (gnp, lp) */ int Make_HandleUse (cgn, pgn) - register GNode *cgn; /* The .USE node */ - register GNode *pgn; /* The target of the .USE node */ + GNode *cgn; /* The .USE node */ + GNode *pgn; /* The target of the .USE node */ { - register GNode *gn; /* A child of the .USE node */ - register LstNode ln; /* An element in the children list */ + GNode *gn; /* A child of the .USE node */ + LstNode ln; /* An element in the children list */ if (cgn->type & (OP_USE|OP_TRANSFORM)) { if ((cgn->type & OP_USE) || Lst_IsEmpty(pgn->commands)) { @@ -399,12 +399,12 @@ MakeHandleUse (pgn, cgn) */ void Make_Update (cgn) - register GNode *cgn; /* the child node */ + GNode *cgn; /* the child node */ { - register GNode *pgn; /* the parent node */ - register char *cname; /* the child's name */ - register LstNode ln; /* Element in parents and iParents lists */ - char *p1; + GNode *pgn; /* the parent node */ + char *cname; /* the child's name */ + LstNode ln; /* Element in parents and iParents lists */ + char *p1; cname = Var_Value (TARGET, cgn, &p1); free(p1); @@ -673,7 +673,7 @@ Make_DoAllVar (gn) static Boolean MakeStartJobs () { - register GNode *gn; + GNode *gn; while (!Job_Full() && !Lst_IsEmpty (toBeMade)) { gn = (GNode *) Lst_DeQueue (toBeMade); @@ -819,8 +819,8 @@ Boolean Make_Run (targs) Lst targs; /* the initial list of targets */ { - register GNode *gn; /* a temporary pointer */ - register Lst examine; /* List of targets to examine */ + GNode *gn; /* a temporary pointer */ + Lst examine; /* List of targets to examine */ int errors; /* Number of errors the Job module reports */ toBeMade = Lst_Init (FALSE); @@ -894,7 +894,7 @@ Make_Run (targs) (void)MakeStartJobs(); } - errors = Job_End(); + errors = Job_Finish(); /* * Print the final status of each target. E.g. if it wasn't made