codebased/include/common/linked.h
2023-04-25 02:13:20 +02:00

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