lib/DtHelp: remove register keyword

This commit is contained in:
Jon Trulson
2018-06-27 14:19:02 -06:00
parent 2760adaab3
commit 5b5ac72691
15 changed files with 71 additions and 71 deletions

View File

@@ -317,7 +317,7 @@ TermStrDraw (
pTerm->lines[y] = (wchar_t *) malloc (sizeof(wchar_t) * (length + 1));
if (pTerm->lines[y] != NULL)
{
register int i;
int i;
wcStr = pTerm->lines[y];
_DtHelpProcessLock();
@@ -340,7 +340,7 @@ TermStrDraw (
(sizeof(wchar_t) * (length + 1)));
if (pTerm->lines[y] != NULL)
{
register int i;
int i;
wcStr = pTerm->lines[y];
_DtHelpProcessLock();
for (i = pTerm->wc_num[y]; i < x; i++)
@@ -669,7 +669,7 @@ static void
DeallocateHyperArray(
DtHelpHyperLines *array_ptr )
{
register DtHelpHyperLines *next = array_ptr;
DtHelpHyperLines *next = array_ptr;
if (array_ptr)
{