Fixed grammatical error.

This commit is contained in:
Arron David Nelson 2024-02-08 02:05:06 -08:00
parent a9fcd9102f
commit eaa93effaf

2
main.c
View File

@ -5,7 +5,7 @@
#define ALIGN4(s) (((((s)-1)>>2)<<2)+4) #define ALIGN4(s) (((((s)-1)>>2)<<2)+4)
#define BLOCK_SIZE sizeof(struct block) #define BLOCK_SIZE sizeof(struct block)
/// The memory's block header. /// The memory block's header.
struct block struct block
{ {
size_t size; size_t size;