ANSIfy the one remaining K&R function.

This commit is contained in:
des 2002-06-02 21:57:28 +00:00
parent f58932ded5
commit 7464466a40

View File

@ -426,10 +426,7 @@ snprintf_func(int ch, void *arg)
* The buffer pointed to by `nbuf' must have length >= MAXNBUF. * The buffer pointed to by `nbuf' must have length >= MAXNBUF.
*/ */
static char * static char *
ksprintn(nbuf, num, base, lenp) ksprintn(char *nbuf, uintmax_t num, int base, int *lenp)
char *nbuf;
uintmax_t num;
int base, *lenp;
{ {
char *p; char *p;