Changed to work with vxWorks 5.1 and GCC 2.2.3.

This commit is contained in:
Janet B. Anderson
1993-06-04 12:14:12 +00:00
parent d10093a065
commit fc334db9d6
3 changed files with 9 additions and 5 deletions

View File

@@ -53,6 +53,7 @@ MACRO *pMac;
seqMacEval(pInStr, pOutStr, maxChar, macTbl)
char *pInStr;
char *pOutStr;
int maxChar;
MACRO *macTbl;
{
char *pMacVal, *pTmp;
@@ -100,7 +101,8 @@ MACRO *macTbl;
printf("OutStr=%s\n", pTmp);
#endif
}
*pOutStr == 0;
/* lrd - was: *pOutStr == 0; */
*pOutStr = 0;
}
/*
* seqMacValGet - given macro name, return pointer to its value.