| Issue 4: | Typos in lib/sprintf.c | |
| 1 person starred this issue and may be notified of changes. | Back to list |
change #include "print.h" to #include "printf.h"
And
void * bufwrite( void * memptr, const char * buf, size_t n )
{
char *dst = (char *)memptr;
while ( len-- )
*dst++ = *buf++;
return dst;
}
change while ( len-- ) to while ( n-- )
|
Owner: neil.johnson71