You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/tests/binaries/host/initialized_heap.native.c

18 lines
254 B
C

/* Initialize the main arena by requesting a single chunk.
* For general GLIBC malloc testing.
*/
#include <stdlib.h>
void break_here(void) {}
int main(void)
{
__attribute__((unused))
void* m = malloc(1);
break_here();
return 0;
}