diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2014-08-19 20:25:20 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2014-08-19 20:25:20 (GMT) | 
| commit | 2425953ed7330c8f92ec7d04a5f248db1ed98a9d (patch) | |
| tree | f389f040f6bcc9f88d837e0e2f37cbd49758f610 /src/arch/instruction-int.h | |
| parent | a0a7b6c1e05c78ae433f353d15e3366107b67d03 (diff) | |
Added a demo symbol when loading an ELF header.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@390 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/instruction-int.h')
| -rw-r--r-- | src/arch/instruction-int.h | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/src/arch/instruction-int.h b/src/arch/instruction-int.h index 076eec2..8730792 100644 --- a/src/arch/instruction-int.h +++ b/src/arch/instruction-int.h @@ -97,6 +97,7 @@ struct _GArchInstructionClass  #define ainstr_list_prev_iter(iter, head) dl_list_prev_iter(iter, head, GArchInstruction, flow)  #define ainstr_list_next_iter(iter, head) dl_list_next_iter(iter, head, GArchInstruction, flow)  #define ainstr_list_add_tail(new, head) dl_list_add_tail(new, head, GArchInstruction, flow) +#define ainstr_list_merge(head1, head2) dl_list_merge(head1, head2, GArchInstruction, flow)  #define ainstr_list_for_each(pos, head) dl_list_for_each(pos, head, GArchInstruction, flow) | 
