Deprecate the internal int/uint types in favor of the cstdint types they were based on

This commit is contained in:
Tim Wojtulewicz 2019-07-30 11:38:42 -07:00
parent 18e4976c6c
commit 54752ef9a1
218 changed files with 1331 additions and 1323 deletions

View file

@ -162,12 +162,12 @@ finger { rules_lval.val = Rule::FINGER; return TOK_PATTERN_TYPE; }
}
{D} {
rules_lval.val = (uint32) atoi(yytext);
rules_lval.val = (uint32_t) atoi(yytext);
return TOK_INT;
}
0x{H} {
rules_lval.val = (uint32) strtol(yytext, 0, 16);
rules_lval.val = (uint32_t) strtol(yytext, 0, 16);
return TOK_INT;
}