/* $OpenBSD: test-3.c,v 1.1 2005/11/23 20:38:58 cloder Exp $ */ /* * Placed in the public domain by Chad Loder . * * Test parsing of "inline" keyword. */ static inline int foo(void); static inline int foo(void) { return 0; } /* ARGSUSED */ int main(int argc, char* argv[]) { int i; i = foo(); i++; return 0; }