Skip to content

Commit

Permalink
Make static
Browse files Browse the repository at this point in the history
  • Loading branch information
tyfkda committed Nov 24, 2023
1 parent a67dd7d commit 93cd1c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsrc/stdio/vfprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static int snprintullong(FILE *fp, unsigned long long x,
return o + fwrite(&buf[sizeof(buf) - i], 1, i, fp);
}

char *snprintullong2(char *bufend, unsigned long long x, int base, const char *digits) {
static char *snprintullong2(char *bufend, unsigned long long x, int base, const char *digits) {
char *p = bufend;
*(--p) = '\0';
do {
Expand Down

0 comments on commit 93cd1c3

Please sign in to comment.