-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule_fix.h
40 lines (30 loc) · 1.19 KB
/
module_fix.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
* \file module_fix.h
*
* \brief dummy module
*
* Copyright (c) 2022 Martin Lampacher. All rights reserved.
*/
#ifndef _MODULE_FIX_H_
#define _MODULE_FIX_H_
/***********************************************************************************************************************
* Includes
**********************************************************************************************************************/
#include "module_sub_a.h"
#include "std_types.h"
#ifdef __cplusplus
extern "C" {
#endif
/***********************************************************************************************************************
* Definitions
**********************************************************************************************************************/
// triggers bugprone-macro-parentheses, which is fixable
#define MODULE_FIX_EXPRESSION(a, b) a + b
/***********************************************************************************************************************
* Functions
**********************************************************************************************************************/
void module_fix_init (void);
#ifdef __cplusplus
}
#endif
#endif /* _MODULE_FIX_H_ */