ISO C comments fix

This commit is contained in:
William S Fulton 2022-08-04 07:51:20 +01:00
commit 15a9ce36f8
2 changed files with 6 additions and 6 deletions

View file

@ -324,7 +324,7 @@ int Preprocessor_expr(DOH *s, int *error) {
/* A number. Reduce EXPR_TOP to an EXPR_VALUE */
char *c = Char(Scanner_text(scan));
if (c[0] == '0' && (c[1] == 'b' || c[1] == 'B')) {
// strtol() doesn't handle binary constants.
/* strtol() doesn't handle binary constants */
stack[sp].value = (long) strtol(c + 2, 0, 2);
} else {
stack[sp].value = (long) strtol(c, 0, 0);