data-func-2.c 189 B

123456789
  1. typedef char foo_t;
  2. /* Conflicting, and indexed. */
  3. extern foo_t var_1;
  4. extern foo_t *var_666;
  5. int other_func(foo_t *);
  6. int ignore (void) { other_func (&var_1); other_func (var_666); }