From: Ankur Date: Tue, 23 Dec 2014 08:51:37 +0000 (+0530) Subject: Removed compiler warning - implicit declaration of a function X-Git-Tag: submit/tizen/20150113.012540~46^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F31%2F32731%2F1;p=platform%2Fcore%2Fsystem%2Fsensord.git Removed compiler warning - implicit declaration of a function -Needed to include #include before using the string functions. -Already submitted a similar change. -Some of the files here, which were showing warning, were already fixed. But, seems some other change has removed the #include . So, I am resubmitting it. -Remaining files - earlier string functions were not being used. Change-Id: I8d1c98de81ee39308343f42034c414501e60d653 --- diff --git a/test/src/gyro.c b/test/src/gyro.c index b74d98d..915971b 100644 --- a/test/src/gyro.c +++ b/test/src/gyro.c @@ -24,6 +24,7 @@ #include #include #include +#include static GMainLoop *mainloop; diff --git a/test/src/light.c b/test/src/light.c index 454d5c2..e2b6e69 100644 --- a/test/src/light.c +++ b/test/src/light.c @@ -24,6 +24,7 @@ #include #include #include +#include static GMainLoop *mainloop; diff --git a/test/src/pressure.c b/test/src/pressure.c index a92ad59..12f5734 100644 --- a/test/src/pressure.c +++ b/test/src/pressure.c @@ -24,6 +24,7 @@ #include #include #include +#include static GMainLoop *mainloop; diff --git a/test/src/proxi.c b/test/src/proxi.c index 70185bd..4d3092d 100644 --- a/test/src/proxi.c +++ b/test/src/proxi.c @@ -24,6 +24,7 @@ #include #include #include +#include static GMainLoop *mainloop; diff --git a/test/src/temperature.c b/test/src/temperature.c index ffdb2e9..3f852c8 100644 --- a/test/src/temperature.c +++ b/test/src/temperature.c @@ -24,6 +24,7 @@ #include #include #include +#include static GMainLoop *mainloop;