diff options
author | Elliott Hughes <enh@google.com> | 2015-04-17 09:47:42 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-04-17 09:47:42 -0700 |
commit | 2d4121c0dcc93382bcd7ea6476f433d8254919dd (patch) | |
tree | bdd8ab4be041d06fc50418b4a99fcb8b5a81b07a /adb/qemu_tracing.h | |
parent | a4802ca08bfcbf0124f5e9b959ed4e3a198d5f46 (diff) | |
download | system_core-2d4121c0dcc93382bcd7ea6476f433d8254919dd.zip system_core-2d4121c0dcc93382bcd7ea6476f433d8254919dd.tar.gz system_core-2d4121c0dcc93382bcd7ea6476f433d8254919dd.tar.bz2 |
Remove extern "C" barriers to using C++.
Change-Id: Ic046d6aa540738cb46b54531bc59ba3b47b0136d
Diffstat (limited to 'adb/qemu_tracing.h')
-rw-r--r-- | adb/qemu_tracing.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/adb/qemu_tracing.h b/adb/qemu_tracing.h index bf80457..ff42d4f 100644 --- a/adb/qemu_tracing.h +++ b/adb/qemu_tracing.h @@ -21,16 +21,8 @@ #ifndef __QEMU_TRACING_H #define __QEMU_TRACING_H -#ifdef __cplusplus -extern "C" { -#endif - /* Initializes connection with the adb-debug qemud service in the emulator. */ int adb_qemu_trace_init(void); void adb_qemu_trace(const char* fmt, ...); -#ifdef __cplusplus -} -#endif - #endif /* __QEMU_TRACING_H */ |