ulib Add umallocbig() and ufreebig() for non-fragmented allocations

This commit is contained in:
2025-11-09 22:21:19 +01:00
parent 02d60129b1
commit 4084336705
3 changed files with 19 additions and 0 deletions

View File

@ -21,6 +21,8 @@
(_a > _b ? _a : _b); \
})
#define ALIGN_UP(x, align) (((x) + ((align)-1)) & ~((align)-1))
void quit(void);
#endif // ULIB_UTIL_UTIL_H_