133965Sjdp/* bfd initialization stuff
2218822Sdim   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2003, 2007
378828Sobrien   Free Software Foundation, Inc.
433965Sjdp   Written by Steve Chamberlain of Cygnus Support.
533965Sjdp
633965SjdpThis file is part of BFD, the Binary File Descriptor library.
733965Sjdp
833965SjdpThis program is free software; you can redistribute it and/or modify
933965Sjdpit under the terms of the GNU General Public License as published by
1033965Sjdpthe Free Software Foundation; either version 2 of the License, or
1133965Sjdp(at your option) any later version.
1233965Sjdp
1333965SjdpThis program is distributed in the hope that it will be useful,
1433965Sjdpbut WITHOUT ANY WARRANTY; without even the implied warranty of
1533965SjdpMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1633965SjdpGNU General Public License for more details.
1733965Sjdp
1833965SjdpYou should have received a copy of the GNU General Public License
1933965Sjdpalong with this program; if not, write to the Free Software
20218822SdimFoundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
2133965Sjdp
22218822Sdim#include "sysdep.h"
2333965Sjdp#include "bfd.h"
2433965Sjdp#include "libbfd.h"
2533965Sjdp
2633965Sjdp/*
2733965SjdpSECTION
2833965Sjdp	Initialization
2933965Sjdp
30218822SdimSUBSECTION
31218822Sdim	Initialization functions
32218822Sdim
3333965Sjdp	These are the functions that handle initializing a BFD.
3433965Sjdp*/
3533965Sjdp
3633965Sjdp/*
3733965SjdpFUNCTION
3833965Sjdp	bfd_init
3933965Sjdp
4033965SjdpSYNOPSIS
41130561Sobrien	void bfd_init (void);
4233965Sjdp
4333965SjdpDESCRIPTION
4433965Sjdp	This routine must be called before any other BFD function to
4533965Sjdp	initialize magical internal data structures.
4633965Sjdp*/
4733965Sjdp
4833965Sjdp/* Actually, there is currently nothing for this function to do.
4933965Sjdp   However, someday it may be needed, so keep it around.  */
5033965Sjdp
5133965Sjdpvoid
52130561Sobrienbfd_init (void)
5333965Sjdp{
5433965Sjdp}
55