diff options
author | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2017-05-02 21:16:20 +0200 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2017-05-02 21:16:20 +0200 |
commit | d8b98dca265b98af6b6b65fe6c18d22f552d05cc (patch) | |
tree | 8830b562a65c407f2fe71d77aecba9c18e5a649a | |
parent | dd53c447fc112f3b8b76d0a3310f9eac18509783 (diff) | |
download | device_samsung_i9300-replicant-6.0.zip device_samsung_i9300-replicant-6.0.tar.gz device_samsung_i9300-replicant-6.0.tar.bz2 |
libsensors: get rid of some implicit declaration warningsHEADreplicant-6.0-0001replicant-6.0
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
-rw-r--r-- | libsensors/akm8975.c | 1 | ||||
-rw-r--r-- | libsensors/lps331ap.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libsensors/akm8975.c b/libsensors/akm8975.c index 47771fb..c13c339 100644 --- a/libsensors/akm8975.c +++ b/libsensors/akm8975.c @@ -21,6 +21,7 @@ #include <stdint.h> #include <fcntl.h> #include <errno.h> +#include <string.h> #include <hardware/sensors.h> #include <hardware/hardware.h> diff --git a/libsensors/lps331ap.c b/libsensors/lps331ap.c index a8ef55a..c177622 100644 --- a/libsensors/lps331ap.c +++ b/libsensors/lps331ap.c @@ -21,6 +21,7 @@ #include <fcntl.h> #include <errno.h> #include <math.h> +#include <string.h> #include <sys/types.h> #include <linux/ioctl.h> #include <linux/input.h> |