Changeset 609 for branches/GNU/src/binutils/bfd/pc532-mach.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/bfd/pc532-mach.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* BFD back-end for Mach3/532 a.out-ish binaries. 2 Copyright 1990, 1991, 1992, 1994, 1995, 2000, 2001 2 Copyright 1990, 1991, 1992, 1994, 1995, 2000, 2001, 2002 3 3 Free Software Foundation, Inc. 4 4 … … 51 51 #define DEFAULT_ARCH bfd_arch_ns32k 52 52 53 #define MY(OP) CAT(pc532machaout_,OP) 53 /* Do not "beautify" the CONCAT* macro args. Traditional C will not 54 remove whitespace added here, and thus will fail to concatenate 55 the tokens. */ 56 #define MY(OP) CONCAT2 (pc532machaout_,OP) 54 57 55 58 /* Must be the same as aout-ns32k.c */ 56 #define NAME(x,y) C AT3(ns32kaout,_32_,y)59 #define NAME(x,y) CONCAT3 (ns32kaout,_32_,y) 57 60 58 61 #define TARGETNAME "a.out-pc532-mach" … … 63 66 #include "libbfd.h" 64 67 #include "aout/aout64.h" 65 66 /* We can`t use the MYNS macro here for cpp reasons too subtle for me -- IWD */67 68 68 69 #define MY_bfd_reloc_type_lookup ns32kaout_bfd_reloc_type_lookup … … 76 77 #define MY_exec_header_not_counted 1 77 78 78 #define MYNSX(OP) CAT(ns32kaout_,OP) 79 reloc_howto_type * 80 MYNSX(bfd_reloc_type_lookup) 81 PARAMS((bfd *abfd AND 82 bfd_reloc_code_real_type code)); 79 reloc_howto_type *ns32kaout_bfd_reloc_type_lookup 80 PARAMS ((bfd *abfd, bfd_reloc_code_real_type code)); 83 81 84 boolean 85 MYNSX(write_object_contents) 86 PARAMS((bfd *abfd)); 82 static bfd_boolean MY(write_object_contents) 83 PARAMS ((bfd *abfd)); 87 84 88 static b oolean85 static bfd_boolean 89 86 MY(write_object_contents) (abfd) 90 bfd *abfd;87 bfd *abfd; 91 88 { 92 89 struct external_exec exec_bytes; … … 110 107 WRITE_HEADERS(abfd, execp); 111 108 112 return true;109 return TRUE; 113 110 } 114 111 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.