test_inline.c 194 B

123456
  1. /* Test source lifted from /usr/share/autoconf/autoconf/c.m4 */
  2. typedef int foo_t;
  3. static inline foo_t static_foo(){return 0;}
  4. foo_t foo(){return 0;}
  5. int main(int argc, char *argv[]){return 0;}