Skip to content

Commit

Permalink
Merge pull request #63 from dmknutsen/Issue_62
Browse files Browse the repository at this point in the history
Fix #62, Replace quotes with angle brackets in /inc
  • Loading branch information
dzbaker authored Jan 6, 2023
2 parents d6c5cec + a6d0c1e commit 1268e29
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions fsw/inc/hs_custom.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/*************************************************************************
* Includes
************************************************************************/
#include "cfe.h"
#include <cfe.h>

/*************************************************************************
* Constants
Expand Down Expand Up @@ -242,4 +242,4 @@ typedef struct

/**\}*/

#endif
#endif
6 changes: 3 additions & 3 deletions fsw/inc/hs_extern_typedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#ifndef HS_EXTERN_TYPEDEFS_H
#define HS_EXTERN_TYPEDEFS_H

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

/*************************************************************************
* Type Definitions
Expand Down Expand Up @@ -90,4 +90,4 @@ typedef struct
HS_MATMsgBuf_t MsgBuf; /**< \brief Message to be sent */
} HS_MATEntry_t;

#endif /* HS_EXTERN_TYPEDEFS_H */
#endif /* HS_EXTERN_TYPEDEFS_H */
6 changes: 3 additions & 3 deletions fsw/inc/hs_msg.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
/************************************************************************
* Includes
************************************************************************/
#include "hs_msgdefs.h"
#include "hs_platform_cfg.h"
#include "cfe.h"
#include <hs_msgdefs.h>
#include <hs_platform_cfg.h>
#include <cfe.h>

/************************************************************************
* Macro Definitions
Expand Down
6 changes: 3 additions & 3 deletions fsw/inc/hs_tbl.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
/*************************************************************************
* Includes
*************************************************************************/
#include "cfe.h"
#include "hs_tbldefs.h"
#include "hs_platform_cfg.h"
#include <cfe.h>
#include <hs_tbldefs.h>
#include <hs_platform_cfg.h>

/************************************************************************
* Macro Definitions
Expand Down

0 comments on commit 1268e29

Please sign in to comment.