use sndiod's utils.c

This commit is contained in:
Alexandre Ratchov 2014-11-17 08:19:16 +01:00
parent c80a3fc1ff
commit af4e943293
2 changed files with 3 additions and 3 deletions

View File

@ -60,9 +60,9 @@ log_flush(void)
* store a string in the log
*/
void
log_puts(const char *msg)
log_puts(char *msg)
{
const char *p = msg;
char *p = msg;
int c;
while ((c = *p++) != '\0') {

View File

@ -20,7 +20,7 @@
#include <stddef.h>
void log_puts(const char *);
void log_puts(char *);
void log_putx(unsigned long);
void log_putu(unsigned long);
void log_puti(long);