Skip to content

Commit de905e7

Browse files
committed
slice24 test: switch from malloc.h to stdlib.h
The former is Linux-specific, meaning our tests wouldn't build under OSX.
1 parent 93ebb84 commit de905e7

File tree

1 file changed

+1
-2
lines changed
  • regression/goto-instrument/slice24

1 file changed

+1
-2
lines changed

regression/goto-instrument/slice24/main.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <assert.h>
2-
#include <malloc.h>
2+
#include <stdlib.h>
33

44
struct rrr
55
{
@@ -23,4 +23,3 @@ int main(int argc, char* argv[])
2323
}
2424
return -1;
2525
}
26-

0 commit comments

Comments
 (0)