#endif /* MUST NOT HAVE TOKENS AFTER IT */
This commit is contained in:
parent
dd567aa2f5
commit
df1f7747e1
|
@ -1466,4 +1466,4 @@ const os_emul emul_netbsd = {
|
|||
0 /*data*/
|
||||
};
|
||||
|
||||
#endif _EMUL_NETBSD_C_
|
||||
#endif /* _EMUL_NETBSD_C_ */
|
||||
|
|
|
@ -386,7 +386,9 @@ htab_sum_binary(bfd *abfd,
|
|||
htab_binary_sizes *sizes = (htab_binary_sizes*)data;
|
||||
unsigned_word size = bfd_get_section_size_before_reloc (sec);
|
||||
unsigned_word vma = bfd_get_section_vma (abfd, sec);
|
||||
#ifndef bfd_get_section_lma
|
||||
#define bfd_get_section_lma(abfd, sec) ((sec)->lma + 0)
|
||||
#endif
|
||||
unsigned_word ra = bfd_get_section_lma (abfd, sec);
|
||||
|
||||
/* skip the section if no memory to allocate */
|
||||
|
|
|
@ -718,4 +718,4 @@ const device_descriptor hw_init_device_descriptor[] = {
|
|||
{ NULL },
|
||||
};
|
||||
|
||||
#endif _HW_INIT_C_
|
||||
#endif /* _HW_INIT_C_ */
|
||||
|
|
|
@ -128,4 +128,4 @@ const device_descriptor hw_register_device_descriptor[] = {
|
|||
{ NULL },
|
||||
};
|
||||
|
||||
#endif _HW_REGISTER_C_
|
||||
#endif /* _HW_REGISTER_C_ */
|
||||
|
|
|
@ -100,4 +100,4 @@ const device_descriptor hw_trace_device_descriptor[] = {
|
|||
{ NULL },
|
||||
};
|
||||
|
||||
#endif _HW_TRACE_C_
|
||||
#endif /* _HW_TRACE_C_ */
|
||||
|
|
|
@ -272,4 +272,4 @@ const device_descriptor hw_vm_device_descriptor[] = {
|
|||
{ NULL },
|
||||
};
|
||||
|
||||
#endif _HW_VM_C_
|
||||
#endif /* _HW_VM_C_ */
|
||||
|
|
Loading…
Reference in New Issue