* libcoff.h (bfd_coff_link_add_one_symbol): Combine macro args back into

one line.  Some compilers (sunos 4.1.3 for example) won't accept args
	split across more than one line.
This commit is contained in:
Fred Fish 1996-02-03 23:47:12 +00:00
parent f56cc4e719
commit b48f10bacc
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Sat Feb 3 15:43:44 1996 Fred Fish <fnf@cygnus.com>
* libcoff.h (bfd_coff_link_add_one_symbol): Combine macro args back into
one line. Some compilers (sunos 4.1.3 for example) won't accept args
split across more than one line.
Fri Feb 2 11:42:15 1996 Steve Chamberlain <sac@slash.cygnus.com>
* aclocal.m4 (BFD_BINARY_FOPEN): Understand cygwin32.

View File

@ -814,8 +814,7 @@ typedef struct
#define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\
((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\
(obfd, info, ibfd, sec, rel, adjustedp))
#define bfd_coff_link_add_one_symbol(info, abfd, name, flags, section,\
value, string, cp, coll, hashp)\
#define bfd_coff_link_add_one_symbol(info, abfd, name, flags, section, value, string, cp, coll, hashp)\
((coff_backend_info (abfd)->_bfd_coff_link_add_one_symbol)\
(info, abfd, name, flags, section, value, string, cp, coll, hashp))