Skip to content

Commit ab55322

Browse files
committed
Fix headers from review
Signed-off-by: Minju, Lee <[email protected]>
1 parent 0f8db17 commit ab55322

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

rmw/include/rmw/service_endpoint_info_array.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ extern "C"
2020
{
2121
#endif
2222

23+
#include <stddef.h>
24+
2325
#include "rcutils/allocator.h"
2426
#include "rmw/service_endpoint_info.h"
2527
#include "rmw/visibility_control.h"

rmw/src/service_endpoint_info.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "rmw/service_endpoint_info.h"
15+
#include <stdint.h>
16+
#include <stddef.h>
17+
#include <string.h>
1618

1719
#include "rcutils/macros.h"
1820
#include "rcutils/strdup.h"
21+
22+
#include "rmw/service_endpoint_info.h"
1923
#include "rmw/error_handling.h"
2024
#include "rmw/types.h"
2125

rmw/src/service_endpoint_info_array.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
#include <stddef.h>
16+
1517
#include "rmw/service_endpoint_info_array.h"
1618
#include "rmw/error_handling.h"
1719
#include "rmw/types.h"

0 commit comments

Comments
 (0)