blob: 658bac4dbe224b0c139461ad16dc093a1fdf5f46 [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 */