diff options
author | John Gilmore <gnu@cygnus> | 1992-11-28 13:00:18 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-11-28 13:00:18 +0000 |
commit | 1f29e30b1f011b35c948b048e7f19cfa663d57d9 (patch) | |
tree | 6bdf19737e1e8dc3d65b1fc62b1c2049f892fdb5 /bfd/aout-target.h | |
parent | d4a06831c1121dc4205135127d82a3fb6d53f26b (diff) | |
download | gdb-1f29e30b1f011b35c948b048e7f19cfa663d57d9.zip gdb-1f29e30b1f011b35c948b048e7f19cfa663d57d9.tar.gz gdb-1f29e30b1f011b35c948b048e7f19cfa663d57d9.tar.bz2 |
* aout-target.h, aoutf1.h, trad-core.c, coffcode.h, libaout.h:
Eliminate all PROTO calls, replace with PARAMS for readability.
* aoutx.h: Add type to callback parameter.
* coff-mips.c: Don't call trad-core.h, not needed.
* trad-core.c: Incorporate trad-core.h declarations. Fix comments.
* trad-core.h: Eliminate, unused.
Diffstat (limited to 'bfd/aout-target.h')
-rw-r--r-- | bfd/aout-target.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/aout-target.h b/bfd/aout-target.h index 9b8273a..8cf7429 100644 --- a/bfd/aout-target.h +++ b/bfd/aout-target.h @@ -194,6 +194,7 @@ static CONST struct aout_backend_data MY(backend_data) = { 0, /* text incl header */ 0, /* text vma? */ MY_set_sizes, + 0, /* exec header is counted */ }; #define MY_backend_data &MY(backend_data) #endif @@ -240,7 +241,8 @@ static CONST struct aout_backend_data MY(backend_data) = { #define MY_bfd_debug_info_end bfd_void #endif #ifndef MY_bfd_debug_info_accumulate -#define MY_bfd_debug_info_accumulate (PROTO(void,(*),(bfd*, struct sec *))) bfd_void +#define MY_bfd_debug_info_accumulate \ + (void (*) PARAMS ((bfd*, struct sec *))) bfd_void #endif #ifndef MY_core_file_failing_command |