Skip to content

Commit c13e416

Browse files
committed
Fix malloc declaration in Linked_List1 regression test
We had invalid pointers instead of dynamic objects in this test, which didn't matter to much. It may, however, matter with upcoming support for non-deterministic pointers.
1 parent 1a1245e commit c13e416

File tree

1 file changed

+1
-1
lines changed
  • regression/cbmc/Linked_List1

1 file changed

+1
-1
lines changed

regression/cbmc/Linked_List1/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
void *malloc(unsigned int s);
1+
void *malloc(__CPROVER_size_t s);
22

33
struct nodet
44
{

0 commit comments

Comments
 (0)