We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b64df41 commit a526067Copy full SHA for a526067
src/utility/STM32Cube_FW/stm_list.h
@@ -23,14 +23,10 @@
23
24
/* Includes ------------------------------------------------------------------*/
25
26
+#include "stdint.h"
27
#include "stdbool.h"
-#include "stm32_wpan_common.h"
28
29
-#ifdef __cplusplus
30
-extern "C" {
31
-#endif
32
-
33
-typedef PACKED_STRUCT _tListNode {
+typedef struct _tListNode {
34
struct _tListNode *next;
35
struct _tListNode *prev;
36
} tListNode;
@@ -59,8 +55,4 @@ void LST_get_next_node(tListNode *ref_node, tListNode **node);
59
55
60
56
void LST_get_prev_node(tListNode *ref_node, tListNode **node);
61
57
62
63
-}
64
65
66
58
#endif /* _STM_LIST_H_ */
0 commit comments