summaryrefslogtreecommitdiffstats
path: root/liblog/fake_log_device.h
diff options
context:
space:
mode:
authorTom Cherry <tomcherry@google.com>2019-02-11 18:43:13 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-02-11 18:43:13 +0000
commitea57928f002306ad3994f5c209af9ccd185fb96b (patch)
treebcaf39cfc6c0c8b996d71b962fd82090c0d68eb5 /liblog/fake_log_device.h
parent38c143e8c00c6a80ef27f8e9ac9db365e4c2b51a (diff)
parent2d9779e87b110b33745de9cec006f205396bef5d (diff)
downloadsystem_core-ea57928f002306ad3994f5c209af9ccd185fb96b.tar.gz
system_core-ea57928f002306ad3994f5c209af9ccd185fb96b.tar.bz2
system_core-ea57928f002306ad3994f5c209af9ccd185fb96b.zip
Merge "liblog: remove visibility macros"
Diffstat (limited to 'liblog/fake_log_device.h')
-rw-r--r--liblog/fake_log_device.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/liblog/fake_log_device.h b/liblog/fake_log_device.h
index ef0beb68a..ce54db2bf 100644
--- a/liblog/fake_log_device.h
+++ b/liblog/fake_log_device.h
@@ -25,14 +25,13 @@ struct iovec;
__BEGIN_DECLS
-LIBLOG_HIDDEN int fakeLogOpen(const char* pathName);
-LIBLOG_HIDDEN int fakeLogClose(int fd);
-LIBLOG_HIDDEN ssize_t fakeLogWritev(int fd, const struct iovec* vector,
- int count);
-
-LIBLOG_HIDDEN ssize_t __send_log_msg(char*, size_t);
-LIBLOG_ABI_PUBLIC int __android_log_is_loggable(int prio, const char*, int def);
-LIBLOG_ABI_PUBLIC int __android_log_is_loggable_len(int prio, const char*, size_t, int def);
-LIBLOG_ABI_PRIVATE int __android_log_is_debuggable();
+int fakeLogOpen(const char* pathName);
+int fakeLogClose(int fd);
+ssize_t fakeLogWritev(int fd, const struct iovec* vector, int count);
+
+ssize_t __send_log_msg(char*, size_t);
+int __android_log_is_loggable(int prio, const char*, int def);
+int __android_log_is_loggable_len(int prio, const char*, size_t, int def);
+int __android_log_is_debuggable();
__END_DECLS