colorchord/embedded8266/user/mystuff.c

19 lines
178 B
C
Raw Normal View History

#include "mystuff.h"
char generic_print_buffer[384];
2015-07-27 09:34:00 +02:00
void user_rf_pre_init(void)
{
//nothing.
}
char * strcat( char * dest, char * src )
{
return strcat(dest, src );
}