1
0

static.cpp 79 B

123456
  1. int file1_sq_func(int);
  2. int static_func(int x)
  3. {
  4. return file1_sq_func(x);
  5. }