d855: recovery_updater: Switch to cpp

Change-Id: I076c33cac23ee79eb2bd29dba074e858789febf2
gugelfrei
Hendrik Hagendorn 8 years ago
parent 4673ef40fd
commit 9df7dfe301

@ -2,7 +2,7 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_C_INCLUDES := bootable/recovery
LOCAL_SRC_FILES := recovery_updater.c
LOCAL_SRC_FILES := recovery_updater.cpp
LOCAL_MODULE := librecovery_updater_g3
LOCAL_MODULE_TAGS := eng
include $(BUILD_STATIC_LIBRARY)

@ -26,6 +26,7 @@
#include <unistd.h>
#include "edify/expr.h"
#include "updater/install.h"
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
Loading…
Cancel
Save