This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // WARNING: Requires C99 compatible compiler | |
| #include <unistd.h> | |
| #include <stdlib.h> | |
| #include "heap.h" | |
| #define CMP(a, b) ((a) >= (b)) | |
| static const unsigned int base_size = 4; |