elixir/t/tree/issue186-counterexamples.c
Chris White 90392b543d doc-comment tests: add counterexamples for issue186
Issue 186 relates to symbols that are not documented.  Add tests for
symbols that are documented in a file of the same structure.
2020-10-10 17:22:26 -04:00

24 lines
389 B
C

// SPDX-License-Identifier: CC0-1.0
// This file is the situation of #186, but with documentation.
#ifdef SOMETHING
/**
* i186c_fn1 - do something
*/
static int i186c_fn1(struct platform_device *pdev)
{
}
#else
#define i186c_fn1 NULL
#endif
#ifdef SOMETHING
static int i186c_fn2(struct platform_device *pdev)
{
}
#else
/**
* i186c_fn2 - do something
*/
#define i186c_fn2 NULL
#endif