Skip to content

Commit

Permalink
Fix #416, Removes static on module function declaration macro
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Nov 3, 2023
1 parent 40d5035 commit 0769a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsw/shared/inc/cfe_psp_module.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ typedef const struct
* The "name" argument should match the name of the module object file
*/
#define CFE_PSP_MODULE_DECLARE_SIMPLE(name) \
static void name##_Init(uint32 PspModuleId); \
void name##_Init(uint32 PspModuleId); \
CFE_PSP_ModuleApi_t CFE_PSP_##name##_API = { \
.ModuleType = CFE_PSP_MODULE_TYPE_SIMPLE, \
.OperationFlags = 0, \
Expand Down

0 comments on commit 0769a94

Please sign in to comment.