onefile fix

This commit is contained in:
nhmall
2024-03-29 07:02:04 -04:00
parent e4ffda7386
commit af3a0db083
7 changed files with 16 additions and 10 deletions
+3 -2
View File
@@ -6661,8 +6661,9 @@ staticfn void
escapes(const char *cp, /* might be 'tp', updating in place */
char *tp) /* result is never longer than 'cp' */
{
static NEARDATA const char oct[] = "01234567", dec[] = "0123456789",
hex[] = "00112233445566778899aAbBcCdDeEfF";
static NEARDATA const char oct[] = "01234567", dec[] = "0123456789";
/* hex[] is defined in decl.c */
const char *dp;
int cval, meta, dcount;