Skip to content

Commit

Permalink
Merge pull request #65 from dmknutsen/Issue_64
Browse files Browse the repository at this point in the history
Fix #64, Replace quotes with angle brackets in /inc
  • Loading branch information
dzbaker committed Jan 6, 2023
2 parents 5b16a3e + 44b8da0 commit 779b903
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions fsw/inc/lc_extern_typedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef LC_EXTERN_TYPEDEFS_H
#define LC_EXTERN_TYPEDEFS_H

#include "cfe.h"
#include <cfe.h>

/**
* \name LC Table Name Strings
Expand Down Expand Up @@ -117,4 +117,4 @@ typedef struct
#LC_OPER_CUSTOM */
} LC_WDTEntry_t;

#endif /* LC_EXTERN_TYPEDEFS_H */
#endif /* LC_EXTERN_TYPEDEFS_H */
4 changes: 2 additions & 2 deletions fsw/inc/lc_msg.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
/************************************************************************
* Includes
************************************************************************/
#include "cfe.h"
#include "lc_msgdefs.h"
#include <cfe.h>
#include <lc_msgdefs.h>

/************************************************************************
* Type Definitions
Expand Down
2 changes: 1 addition & 1 deletion fsw/inc/lc_msgdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/************************************************************************
* Includes
************************************************************************/
#include "lc_platform_cfg.h"
#include <lc_platform_cfg.h>

/************************************************************************
* Macro Definitions
Expand Down
2 changes: 1 addition & 1 deletion fsw/inc/lc_platform_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#ifndef LC_PLATFORM_CFG_H
#define LC_PLATFORM_CFG_H

#include "lc_msgdefs.h"
#include <lc_msgdefs.h>

/**
* \defgroup cfslcplatformcfg CFS Limit Checker Platform Configuration
Expand Down
8 changes: 4 additions & 4 deletions fsw/inc/lc_tbl.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
/*************************************************************************
* Includes
*************************************************************************/
#include "cfe.h"
#include "lc_platform_cfg.h"
#include "lc_tbldefs.h"
#include "lc_extern_typedefs.h"
#include <cfe.h>
#include <lc_platform_cfg.h>
#include <lc_tbldefs.h>
#include <lc_extern_typedefs.h>

/*************************************************************************
* Type Definitions
Expand Down

0 comments on commit 779b903

Please sign in to comment.