#ifndef STD_STDLIB_H_ #define STD_STDLIB_H_ #include void *malloc(size_t size); void free(void *ptr); #endif // STD_STDLIB_H_