18 lines
359 B
C
18 lines
359 B
C
#ifndef ULIB_STD_STDLIB_H_
|
|
#define ULIB_STD_STDLIB_H_
|
|
|
|
#include <uprintf.h>
|
|
#include <string/conv.h>
|
|
|
|
#define printf uprintf
|
|
#define sprintf usprintf
|
|
#define vsprintf uvsprintf
|
|
#define snprintf usnprintf
|
|
#define vsnprintf uvsnprintf
|
|
#define vprintf uvprintf
|
|
|
|
#define strtoul string_conv_strtoul
|
|
#define strtol string_conv_strtol
|
|
|
|
#endif // ULIB_STD_STDLIB_H_
|