summaryrefslogtreecommitdiff
path: root/utils/linked_list.c
diff options
context:
space:
mode:
authorKevin Tang <zhikait@codeaurora.org>2016-09-12 17:20:55 -0700
committerMike Cailean <mcailean@codeaurora.org>2018-01-16 13:35:38 -0800
commit61de97e13003a5dea9917cb6e943ecd8e142b05b (patch)
tree31ddbc97199253187cbee24932f8712e2216f83d /utils/linked_list.c
parent438abebca035fe4f956e7e6232a1b98074e4c673 (diff)
downloadgps-61de97e13003a5dea9917cb6e943ecd8e142b05b.tar.gz
LE clean up
separated utils, core, ds and loc-api-v02 from loc-hal into their own independent packages; simplified loc-pla; moved pla to the root of project; removed loc-stub. Change-Id: I373f02f9306646addf55ae90d71c4ba8e3741d09 CRs-Fixed: 2172544
Diffstat (limited to 'utils/linked_list.c')
-rw-r--r--utils/linked_list.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/linked_list.c b/utils/linked_list.c
index 33185d0..02e1463 100644
--- a/utils/linked_list.c
+++ b/utils/linked_list.c
@@ -26,14 +26,15 @@
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#define LOG_TAG "LocSvc_utils_ll"
+
#include "linked_list.h"
#include <stdio.h>
#include <string.h>
-
-#define LOG_TAG "LocSvc_utils_ll"
-#include <platform_lib_includes.h>
#include <stdlib.h>
#include <stdint.h>
+#include <loc_pla.h>
+#include <log_util.h>
typedef struct list_element {
struct list_element* next;