1 /* this is an f90 function */
2 void testOnly(int *cIntPtr);
3
4 int main(int argc, char **argv)
5 {
6 int myCInt;
7
8 myCInt = -11;
9 testOnly(&myCInt);
10
11 return 0;
12 }/* end main() */