| Index: bfd/pef.c
|
| diff --git a/bfd/pef.c b/bfd/pef.c
|
| index d4ad33ad37b75b6cd7189448c722b41608a59ff8..ca4c4548a91719954c7d2fe5e4fc83858647df19 100644
|
| --- a/bfd/pef.c
|
| +++ b/bfd/pef.c
|
| @@ -19,6 +19,10 @@
|
| Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
| MA 02110-1301, USA. */
|
|
|
| +/* PEF (Preferred Executable Format) is the binary file format for late
|
| + classic Mac OS versions (before Darwin). It is supported by both m68k
|
| + and PowerPc. It is also called CFM (Code Fragment Manager). */
|
| +
|
| #include "sysdep.h"
|
| #include "safe-ctype.h"
|
| #include "pef.h"
|
| @@ -503,10 +507,9 @@ bfd_pef_scan_start_address (bfd *abfd)
|
| }
|
|
|
| int
|
| -bfd_pef_scan (abfd, header, mdata)
|
| - bfd *abfd;
|
| - bfd_pef_header *header;
|
| - bfd_pef_data_struct *mdata;
|
| +bfd_pef_scan (bfd *abfd,
|
| + bfd_pef_header *header,
|
| + bfd_pef_data_struct *mdata)
|
| {
|
| unsigned int i;
|
| enum bfd_architecture cputype;
|
|
|