Skip to content

Commit

Permalink
Merge pull request #1228 from skliper/fix1221-include_quotes
Browse files Browse the repository at this point in the history
Fix #1221, Use quotes for local includes
  • Loading branch information
astrogeco authored Mar 18, 2021
2 parents c642d5e + b878c4e commit 6001050
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions cmake/target/inc/target_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
#ifndef TARGET_CONFIG_H_
#define TARGET_CONFIG_H_

#include <common_types.h>
#include <cfe_psp_configdata.h>
#include "common_types.h"
#include "cfe_psp_configdata.h"

/**
* Prototype for the main system entry function implemented in CFE ES
Expand Down
2 changes: 1 addition & 1 deletion modules/cfe_assert/inc/cfe_assert.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/************************************************************************
** Includes
*************************************************************************/
#include <common_types.h>
#include "common_types.h"

/************************************************************************
** Type Definitions
Expand Down
2 changes: 1 addition & 1 deletion modules/cfe_assert/src/cfe_assert_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Includes
*/

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

#include "cfe_assert.h"

Expand Down
2 changes: 1 addition & 1 deletion modules/cfe_assert/src/cfe_assert_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <string.h>
#include <stdbool.h>

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

#include "utbsp.h"
#include "uttest.h"
Expand Down
2 changes: 1 addition & 1 deletion modules/cfe_testcase/src/cfe_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* Includes
*/

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

#include "uttest.h"
#include "utassert.h"
Expand Down
2 changes: 1 addition & 1 deletion modules/cfe_testrunner/inc/cfe_testrunner.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/************************************************************************
** Includes
*************************************************************************/
#include <common_types.h>
#include "common_types.h"

/************************************************************************
** Type Definitions
Expand Down
2 changes: 1 addition & 1 deletion modules/cfe_testrunner/src/cfe_testrunner_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Includes
*/

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

#include "cfe_testrunner.h"

Expand Down
4 changes: 2 additions & 2 deletions modules/core_api/fsw/inc/cfe_tbl_filedef.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
#ifndef _cfe_tbl_filedef_
#define _cfe_tbl_filedef_

#include <cfe_mission_cfg.h>
#include <common_types.h>
#include "cfe_mission_cfg.h"
#include "common_types.h"
#include "cfe_tbl_extern_typedefs.h" /* for "CFE_TBL_FileHdr_t" definition */
#include "cfe_fs_extern_typedefs.h" /* for "CFE_FS_HDR_DESC_MAX_LEN" definition */

Expand Down
8 changes: 4 additions & 4 deletions modules/core_private/fsw/inc/cfe_es_erlog_typedef.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
#ifndef CFE_ES_ERLOG_TYPEDEF_H_
#define CFE_ES_ERLOG_TYPEDEF_H_

#include <common_types.h>
#include <cfe_platform_cfg.h>
#include "common_types.h"
#include "cfe_platform_cfg.h"

#include <cfe_time_extern_typedefs.h> /* Needed for CFE_TIME_SysTime_t */
#include <cfe_es_extern_typedefs.h> /* Needed for CFE_ES_AppId_t */
#include "cfe_time_extern_typedefs.h" /* Needed for CFE_TIME_SysTime_t */
#include "cfe_es_extern_typedefs.h" /* Needed for CFE_ES_AppId_t */

#define CFE_ES_ERLOG_DESCRIPTION_MAX_LENGTH 80

Expand Down
2 changes: 1 addition & 1 deletion modules/core_private/fsw/inc/cfe_es_perfdata_typedef.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#ifndef CFE_ES_PERFDATA_TYPEDEF_H_
#define CFE_ES_PERFDATA_TYPEDEF_H_

#include <common_types.h>
#include "common_types.h"
#include "cfe_mission_cfg.h" /* Required for CFE_MISSION_ES_PERF_MAX_IDS */
#include "cfe_platform_cfg.h" /* Required for CFE_PLATFORM_ES_PERF_DATA_BUFFER_SIZE */

Expand Down
2 changes: 1 addition & 1 deletion modules/core_private/fsw/inc/cfe_es_resetdata_typedef.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#ifndef CFE_ES_RESETDATA_TYPEDEF_H_
#define CFE_ES_RESETDATA_TYPEDEF_H_

#include <common_types.h>
#include "common_types.h"

#include "cfe_time_resetvars_typedef.h" /* Required for CFE_TIME_ResetVars_t definition */
#include "cfe_es_erlog_typedef.h" /* Required for CFE_ES_ERLog_t definition */
Expand Down
4 changes: 2 additions & 2 deletions modules/core_private/fsw/inc/cfe_evs_log_typedef.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
#ifndef CFE_EVS_LOG_TYPEDEF_H_
#define CFE_EVS_LOG_TYPEDEF_H_

#include <common_types.h>
#include <cfe_platform_cfg.h>
#include "common_types.h"
#include "cfe_platform_cfg.h"

#include "cfe_evs_msg.h" /* Required for CFE_EVS_LongEventTlm_t definition */

Expand Down

0 comments on commit 6001050

Please sign in to comment.