dtmail: remove register keyword

This commit is contained in:
Jon Trulson
2018-06-27 17:29:25 -06:00
parent 88dd3b2c71
commit d0a4f777d8
12 changed files with 82 additions and 82 deletions

View File

@@ -159,7 +159,7 @@ static char *phrase(char *, int , int );
char *
savestr(char *str)
{
register char *cp, *cp2, *top;
char *cp, *cp2, *top;
for (cp = str; *cp; cp++)
;
@@ -223,8 +223,8 @@ dispname(const char *hdr)
static char *
phrase(char *name, int token, int comma)
{
register char c;
register char *cp, *cp2;
char c;
char *cp, *cp2;
char *bufend, *nbufp;
int gotlt, lastsp, didq;
char nbuf[LINESIZE];