xref: /dflybsd-src/contrib/gdb-7/bfd/init.c (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
186d7f5d3SJohn Marino /* bfd initialization stuff
286d7f5d3SJohn Marino    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2003, 2005, 2007
386d7f5d3SJohn Marino    Free Software Foundation, Inc.
486d7f5d3SJohn Marino    Written by Steve Chamberlain of Cygnus Support.
586d7f5d3SJohn Marino 
686d7f5d3SJohn Marino    This file is part of BFD, the Binary File Descriptor library.
786d7f5d3SJohn Marino 
886d7f5d3SJohn Marino    This program is free software; you can redistribute it and/or modify
986d7f5d3SJohn Marino    it under the terms of the GNU General Public License as published by
1086d7f5d3SJohn Marino    the Free Software Foundation; either version 3 of the License, or
1186d7f5d3SJohn Marino    (at your option) any later version.
1286d7f5d3SJohn Marino 
1386d7f5d3SJohn Marino    This program is distributed in the hope that it will be useful,
1486d7f5d3SJohn Marino    but WITHOUT ANY WARRANTY; without even the implied warranty of
1586d7f5d3SJohn Marino    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1686d7f5d3SJohn Marino    GNU General Public License for more details.
1786d7f5d3SJohn Marino 
1886d7f5d3SJohn Marino    You should have received a copy of the GNU General Public License
1986d7f5d3SJohn Marino    along with this program; if not, write to the Free Software
2086d7f5d3SJohn Marino    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
2186d7f5d3SJohn Marino    MA 02110-1301, USA.  */
2286d7f5d3SJohn Marino 
2386d7f5d3SJohn Marino #include "sysdep.h"
2486d7f5d3SJohn Marino #include "bfd.h"
2586d7f5d3SJohn Marino #include "libbfd.h"
2686d7f5d3SJohn Marino 
2786d7f5d3SJohn Marino /*
2886d7f5d3SJohn Marino SECTION
2986d7f5d3SJohn Marino 	Initialization
3086d7f5d3SJohn Marino 
3186d7f5d3SJohn Marino SUBSECTION
3286d7f5d3SJohn Marino 	Initialization functions
3386d7f5d3SJohn Marino 
3486d7f5d3SJohn Marino 	These are the functions that handle initializing a BFD.
3586d7f5d3SJohn Marino */
3686d7f5d3SJohn Marino 
3786d7f5d3SJohn Marino /*
3886d7f5d3SJohn Marino FUNCTION
3986d7f5d3SJohn Marino 	bfd_init
4086d7f5d3SJohn Marino 
4186d7f5d3SJohn Marino SYNOPSIS
4286d7f5d3SJohn Marino 	void bfd_init (void);
4386d7f5d3SJohn Marino 
4486d7f5d3SJohn Marino DESCRIPTION
4586d7f5d3SJohn Marino 	This routine must be called before any other BFD function to
4686d7f5d3SJohn Marino 	initialize magical internal data structures.
4786d7f5d3SJohn Marino */
4886d7f5d3SJohn Marino 
4986d7f5d3SJohn Marino /* Actually, there is currently nothing for this function to do.
5086d7f5d3SJohn Marino    However, someday it may be needed, so keep it around.  */
5186d7f5d3SJohn Marino 
5286d7f5d3SJohn Marino void
bfd_init(void)5386d7f5d3SJohn Marino bfd_init (void)
5486d7f5d3SJohn Marino {
5586d7f5d3SJohn Marino }
56