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.
13 lines
446 B
C
13 lines
446 B
C
#include "cbmc.h"
|
|
|
|
/****************************************************************
|
|
* Model a malloc that can fail (CBMC malloc does not fail) and
|
|
* check that CBMC can model an object of the requested size.
|
|
****************************************************************/
|
|
|
|
void * safeMalloc( size_t size )
|
|
{
|
|
__CPROVER_assert( size < CBMC_MAX_OBJECT_SIZE, "safeMalloc size too big" );
|
|
return nondet_bool() ? NULL : malloc( size );
|
|
}
|