diff --git a/fsw/src/sample_lib_internal.h b/fsw/src/sample_lib_internal.h index 6cff8c1..d9f065f 100644 --- a/fsw/src/sample_lib_internal.h +++ b/fsw/src/sample_lib_internal.h @@ -30,7 +30,7 @@ #define _sample_lib_internal_h_ /* Include all external/public definitions */ -#include +#include "sample_lib.h" /************************************************************************* ** Macro Definitions diff --git a/unit-test/coveragetest/coveragetest_sample_lib.c b/unit-test/coveragetest/coveragetest_sample_lib.c index 3395534..08d0a28 100644 --- a/unit-test/coveragetest/coveragetest_sample_lib.c +++ b/unit-test/coveragetest/coveragetest_sample_lib.c @@ -45,7 +45,7 @@ * as well as the normal system string.h. It is differentiated * by explicitly specifying the "overrides/" prefix here. */ -#include +#include "OCS_string.h" #include #include diff --git a/unit-test/coveragetest/sample_lib_coveragetest_common.h b/unit-test/coveragetest/sample_lib_coveragetest_common.h index e6cf7ce..38ffe9f 100644 --- a/unit-test/coveragetest/sample_lib_coveragetest_common.h +++ b/unit-test/coveragetest/sample_lib_coveragetest_common.h @@ -32,15 +32,15 @@ * Includes */ -#include -#include -#include +#include "utassert.h" +#include "uttest.h" +#include "utstubs.h" /* * Use the public API/definitions from CFE and SAMPLE LIB */ -#include -#include +#include "cfe.h" +#include "sample_lib_internal.h" /* * Macro to call a function and check its int32 return code diff --git a/unit-test/override_inc/string.h b/unit-test/override_inc/string.h index abc7cd7..0dcf24d 100644 --- a/unit-test/override_inc/string.h +++ b/unit-test/override_inc/string.h @@ -33,7 +33,7 @@ #ifndef _OVERRIDE_STRING_H_ #define _OVERRIDE_STRING_H_ -#include +#include "OCS_string.h" /* ----------------------------------------- */ /* mappings for declarations in string.h */ diff --git a/unit-test/override_src/libc_string_stubs.c b/unit-test/override_src/libc_string_stubs.c index 505ff72..6eeb78f 100644 --- a/unit-test/override_src/libc_string_stubs.c +++ b/unit-test/override_src/libc_string_stubs.c @@ -47,7 +47,7 @@ /* * This is for the prototype of the "OCS_strncpy()" function */ -#include +#include "OCS_string.h" /* ********************************** * Implementation of OCS_strncpy stub