summaryrefslogtreecommitdiff
path: root/libunwindstack/Ucontext.h
diff options
context:
space:
mode:
Diffstat (limited to 'libunwindstack/Ucontext.h')
-rw-r--r--libunwindstack/Ucontext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libunwindstack/Ucontext.h b/libunwindstack/Ucontext.h
index 410af2604..22f6a8988 100644
--- a/libunwindstack/Ucontext.h
+++ b/libunwindstack/Ucontext.h
@@ -170,13 +170,13 @@ struct x86_64_mcontext_t {
// Only care about the registers, skip everything else.
};
-typedef struct x86_64_ucontext {
+struct x86_64_ucontext_t {
uint64_t uc_flags; // unsigned long
uint64_t uc_link; // struct ucontext*
x86_64_stack_t uc_stack;
x86_64_mcontext_t uc_mcontext;
// Nothing else is used, so don't define it.
-} x86_64_ucontext_t;
+};
//-------------------------------------------------------------------
} // namespace unwindstack