| 2 | #include "PowerPC_EABI_Support/MSL_C/MSL_Common/critical_regions.h" |
| 3 | |
| 4 | typedef struct Block |
| 5 | { |
| 6 | struct Block* prev; |
| 7 | struct Block* next; |
| 8 | unsigned long max_size; |
| 9 | unsigned long size; |
| 10 | } Block; |
| 11 | |
| 12 | typedef struct SubBlock |
| 13 | { |
nothing calls this directly
no outgoing calls
no test coverage detected