source: CIVL/examples/pthread/svcomp/intPointer.c@ a0b7ab5

1.23 2.0 main test-branch
Last change on this file since a0b7ab5 was ac1de0b, checked in by Manchun Zheng <zmanchun@…>, 11 years ago

cleaned up pthread transformer; added more tests;

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@2657 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 159 bytes
Line 
1#include<stdlib.h>
2#include<assert.h>
3
4int f(int x){
5
6 assert(!x);
7 return x!=0;
8}
9
10int main(){
11 double *p=NULL;//=malloc(sizeof(double)*10);
12
13 f(p);
14}
15
16
17
Note: See TracBrowser for help on using the repository browser.