Created
June 24, 2020 20:42
-
-
Save tenderlove/77d565b2dc9edd93de865df9cb461aa2 to your computer and use it in GitHub Desktop.
This file contains 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
struct heap_page_header { | |
struct heap_page *page; | |
}; | |
struct heap_page_body { | |
struct heap_page_header header; | |
/* char gap[]; */ | |
/* RVALUE values[]; */ | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment