16 lines
358 B
C
16 lines
358 B
C
#ifndef COMMON_LINKED_H
|
|
#define COMMON_LINKED_H
|
|
|
|
/*
|
|
* ISO C requires at least one declaration
|
|
* clangd will therefore generate warnings for header files
|
|
* containing only macros or nothing at all.
|
|
*
|
|
* To mitigate this, include this file
|
|
* containing this declaration
|
|
* which removes the warning.
|
|
*/
|
|
int common_linked_declaration(void);
|
|
|
|
#endif
|