From 13df5f5f8fbc5a3fdfdd5d1ba5dc853cf3f017f0 Mon Sep 17 00:00:00 2001 From: Mark Salyzyn Date: Wed, 1 Apr 2015 07:52:12 -0700 Subject: [PATCH] servicemanager: service_manager missing include for string.h service_manager.c gets string.h inherited from private/android_filesystem_config.h it should not rely on this in the future. The intent is to move fs_config function into libcutils and thus deprecate any need for string.h in this include file. Bug: 19908228 Change-Id: Icc95ee02bf02c596463868b1330d209d1bd5c58a --- cmds/servicemanager/service_manager.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmds/servicemanager/service_manager.c b/cmds/servicemanager/service_manager.c index df46a6087..0abdf83b4 100644 --- a/cmds/servicemanager/service_manager.c +++ b/cmds/servicemanager/service_manager.c @@ -1,10 +1,11 @@ /* Copyright 2008 The Android Open Source Project */ -#include -#include #include #include +#include +#include +#include #include