b511696c55
This marginally increases the portability of hardened_malloc, eg. on OSX.
9 lines
123 B
C
9 lines
123 B
C
#include <stdlib.h>
|
|
|
|
#include "test_util.h"
|
|
|
|
OPTNONE int main(void) {
|
|
char *p = malloc(-8);
|
|
return !(p == NULL);
|
|
}
|