aboutsummaryrefslogtreecommitdiffstats
path: root/rilsrc/libsecril-compat/secril-compat.c
diff options
context:
space:
mode:
authorWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-06-11 23:13:33 +0200
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-06-23 13:17:28 +0200
commitfb536a46b0c0971b9c5f81eadc3574f9c569aadd (patch)
treea4c4065a1092931b18681ea54a212e48e2c13476 /rilsrc/libsecril-compat/secril-compat.c
parentcbb420bca1818b222913c784292f39f4a91b1ee8 (diff)
downloaddevice_samsung_espresso3g-fb536a46b0c0971b9c5f81eadc3574f9c569aadd.zip
device_samsung_espresso3g-fb536a46b0c0971b9c5f81eadc3574f9c569aadd.tar.gz
device_samsung_espresso3g-fb536a46b0c0971b9c5f81eadc3574f9c569aadd.tar.bz2
remove code and SELinux rules for the proprietary RIL
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
Diffstat (limited to 'rilsrc/libsecril-compat/secril-compat.c')
-rw-r--r--rilsrc/libsecril-compat/secril-compat.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/rilsrc/libsecril-compat/secril-compat.c b/rilsrc/libsecril-compat/secril-compat.c
deleted file mode 100644
index fc11450..0000000
--- a/rilsrc/libsecril-compat/secril-compat.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <sys/types.h>
-
-/**
- * With the switch to C++11 by default, char16_t became a unique type,
- * rather than basically just a typedef of uint16_t. As a result, the
- * compiler now mangles the symbol for writeString16 differently. Our
- * RIL references the old symbol of course, not the new one.
- */
-uintptr_t _ZN7android6Parcel13writeString16EPKDsj(void *instance, void *str, size_t len);
-uintptr_t _ZN7android6Parcel13writeString16EPKtj(void *instance, void *str, size_t len)
-{
- return _ZN7android6Parcel13writeString16EPKDsj(instance, str, len);
-}