New prototype from sectino.c
authorSteve Chamberlain <sac@cygnus>
Wed, 6 Nov 1991 01:23:48 +0000 (01:23 +0000)
committerSteve Chamberlain <sac@cygnus>
Wed, 6 Nov 1991 01:23:48 +0000 (01:23 +0000)
include/bfd.h

index e0163e287d73fe8c0142f2b69b64d626c2a730b9..72cdae48c1dfdbd13a0f98a28af1446e1621dbb4 100644 (file)
@@ -739,6 +739,27 @@ who's name matches that provided, otherwise NULL. @xref{Sections}, for more info
  PROTO(asection *, bfd_get_section_by_name,
     (bfd *abfd, CONST char *name));
 
+/*
+
+ bfd_make_section_old_way
+This function creates a new empty section called @var{name} and attaches it
+to the end of the chain of sections for the BFD supplied. An attempt to
+create a section with a name which is already in use, returns its pointer without
+changing the section chain.
+
+It has the funny name since this is the way it used to be before gilmore broke it.
+
+Possible errors are:
+@table @code
+@item invalid_operation
+If output has already started for this BFD.
+@item no_memory
+If obstack alloc fails.
+@end table
+*/
+
+ PROTO(asection *, bfd_make_section_old_way, (bfd *, CONST char *name));
+
 /*
 
  bfd_make_section