#ifndef STDLIB_H #define STDLIB_H /* Chain to SDCC's own stdlib.h (malloc/free/atoi/strtol/rand/qsort/…) — * this header only ADDS Sprinter extensions and must not shadow the * standard declarations. */ #include_next #include /* size_t */ #include int16_t min(int16_t a, int16_t b); int16_t max(int16_t a, int16_t b); #endif