source: CIVL/examples/possibleBug/undefinedVar.cvl@ b7c275f

1.23 2.0 main test-branch
Last change on this file since b7c275f was b7c275f, checked in by Yihao Yan <yihaoyan1@…>, 9 years ago

minor changes

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

  • Property mode set to 100644
File size: 111 bytes
Line 
1#include <stdio.h>
2
3void fun(double *a){
4 *a = *a + 1;
5}
6
7int main(){
8 double Jb;
9 fun(&Jb);
10 return 0;
11}
Note: See TracBrowser for help on using the repository browser.