f2c51bc
1 2 3 4 5 6 7 8 9 10 11
#pragma once #include <stdint.h> #include <stddef.h> // Header is in common/, but implementation is not. void* malloc(size_t sz); void free(void* ptr); /* vim: set ts=4 sw=4 tw=0 noet :*/