summaryrefslogtreecommitdiffstats
path: root/include/hardware/hw_auth_token.h
diff options
context:
space:
mode:
authorShawn Willden <swillden@google.com>2015-03-18 18:59:52 -0600
committerShawn Willden <swillden@google.com>2015-03-18 19:25:01 -0600
commitc51d01ed029458e8809eeb9c16f9ed2dbe755be4 (patch)
treeb185982f6a6cfe500170e81a0a76216a9e31644e /include/hardware/hw_auth_token.h
parent201e5555b336bb5f9db7dd3215e8d6135ed5f146 (diff)
downloadhardware_libhardware-c51d01ed029458e8809eeb9c16f9ed2dbe755be4.zip
hardware_libhardware-c51d01ed029458e8809eeb9c16f9ed2dbe755be4.tar.gz
hardware_libhardware-c51d01ed029458e8809eeb9c16f9ed2dbe755be4.tar.bz2
Use extern "C" rather than BEGIN/END_DECLS.
For compatibility with Trusty. I'll probably revert this later after I find a proper fix for Trusty. Change-Id: I49b4ae55251398eec2a6633e09bbc468f16a4d14
Diffstat (limited to 'include/hardware/hw_auth_token.h')
-rw-r--r--include/hardware/hw_auth_token.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/hardware/hw_auth_token.h b/include/hardware/hw_auth_token.h
index ffb72a9..154c1fd 100644
--- a/include/hardware/hw_auth_token.h
+++ b/include/hardware/hw_auth_token.h
@@ -19,7 +19,9 @@
#ifndef ANDROID_HARDWARE_HW_AUTH_TOKEN_H
#define ANDROID_HARDWARE_HW_AUTH_TOKEN_H
-__BEGIN_DECLS
+#ifndef __cplusplus
+extern "C" {
+#endif // __cplusplus
typedef enum {
HW_AUTH_NONE = 0,
@@ -42,6 +44,8 @@ typedef struct __attribute__((__packed__)) {
uint8_t hmac[32];
} hw_auth_token_t;
-__END_DECLS
+#ifndef __cplusplus
+} // extern "C"
+#endif // __cplusplus
#endif // ANDROID_HARDWARE_HW_AUTH_TOKEN_H