rt_gccstream/gcc/testsuite/gfortran.dg/only_clause_main.c

13 lines
184 B
C

/* this is an f90 function */
void testOnly(int *cIntPtr);
int main(int argc, char **argv)
{
int myCInt;
myCInt = -11;
testOnly(&myCInt);
return 0;
}/* end main() */