blob: 0a9684c58e70b5286e6e4cf0ad4a0e9b8616fd83 [file] [log] [blame]
#ifndef HAVE_FOO
void foo(void)
{
if (bar)
{
call_some_function(); /* call the function */
return(foo); /* comment */
} /* if (bar) */
}
#endif /* HAVE_FOO */
#ifndef HAVE_BAR /* bar isn't available on all HW */
void bar(void)
{
if (foo)
{
call_some_function(); /* call the function */
return(foo); /* comment */
} /* if (foo) */
}
#endif /* HAVE_BAR */