2018-10-09 03:11:06 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2022-01-22 01:17:21 +05:30
|
|
|
#include "test_util.h"
|
|
|
|
#include "../util.h"
|
2020-06-18 02:09:50 +05:30
|
|
|
|
|
|
|
OPTNONE int main(void) {
|
2022-01-04 02:41:03 +05:30
|
|
|
char *p = malloc(256 * 1024);
|
2018-10-09 03:11:06 +05:30
|
|
|
if (!p) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
free(p);
|
2022-01-04 23:09:49 +05:30
|
|
|
UNUSED char *q = malloc(256 * 1024);
|
2018-10-09 03:11:06 +05:30
|
|
|
p[64 * 1024 + 1] = 'a';
|
|
|
|
return 0;
|
|
|
|
}
|