2022-01-03 21:24:31 -05:00
|
|
|
#include <malloc.h>
|
2018-09-04 09:06:23 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2022-01-21 20:47:21 +01:00
|
|
|
#include "test_util.h"
|
2020-06-17 16:39:50 -04:00
|
|
|
|
|
|
|
OPTNONE int main(void) {
|
2020-04-11 15:17:37 -04:00
|
|
|
char *p = malloc(256 * 1024);
|
2018-09-04 09:06:23 -04:00
|
|
|
if (!p) {
|
|
|
|
return 1;
|
|
|
|
}
|
2022-01-03 21:11:31 -05:00
|
|
|
size_t size = malloc_usable_size(p);
|
2022-01-03 21:20:15 -05:00
|
|
|
*(p + size) = 0;
|
2018-09-04 09:06:23 -04:00
|
|
|
free(p);
|
|
|
|
return 0;
|
|
|
|
}
|