OSDN Git Service

2010-07-02 Jerry DeLisle <jvdelisle@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / c_size_t_driver.c
1 #include <stdlib.h>
2 void sub0(int my_c_size);
3
4 int main(int argc, char **argv)
5 {
6   int my_c_size;
7
8   my_c_size = (int)sizeof(size_t);
9   sub0(my_c_size);
10
11   return 0;
12 }