#ifndef DEF_LIB_STD_H #define DEF_LIB_STD_H // Functions enabling the use of dlmalloc code #include /* For size_t */ #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MAX(a, b) ((a) > (b) ? (a) : (b)) #ifdef __cplusplus extern "C" { #endif void abort(); void *memcpy(void *dest, const void *src, int count); void *memset(void *dest, int val, int count); uint16_t *memsetw(uint16_t *dest, uint16_t val, int count); int strlen(const char *str); char *strcpy(char *dest, const char *src); char *strdup(const char *src); char *strchr(const char *str, char c); char *strcat(char *dest, const char *src); int strcmp(const char *s1, const char *s2); #ifdef __cplusplus } #endif #define sbrk ksbrk #define brk kbrk extern int errno; #endif