Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #62, Replace quotes with angle brackets in /inc #63

Merged
merged 1 commit into from
Jan 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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