#ifndef STDLIB_H #define STDLIB_H void *malloc(size_t s); void *realloc(void *addr, size_t sz); void free(void *p); #endif