comparison gcc/testsuite/gfortran.dg/only_clause_main.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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() */