2020-04-16 09:32:16 +05:30
|
|
|
#include <malloc.h>
|
|
|
|
|
2022-01-22 01:17:21 +05:30
|
|
|
#include "test_util.h"
|
2020-06-18 02:09:50 +05:30
|
|
|
|
|
|
|
OPTNONE int main(void) {
|
2020-04-16 09:32:16 +05:30
|
|
|
char *p = malloc(16);
|
|
|
|
if (!p) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
char *q = p + 4096 * 4;
|
|
|
|
malloc_usable_size(q);
|
|
|
|
return 0;
|
|
|
|
}
|