138889Sjdp/* dlltool.h -- header file for dlltool
2130561Sobrien   Copyright 1997, 1998, 2003, 2004 Free Software Foundation, Inc.
338889Sjdp
438889Sjdp   This file is part of GNU Binutils.
538889Sjdp
638889Sjdp   This program is free software; you can redistribute it and/or modify
738889Sjdp   it under the terms of the GNU General Public License as published by
838889Sjdp   the Free Software Foundation; either version 2 of the License, or
938889Sjdp   (at your option) any later version.
1038889Sjdp
1138889Sjdp   This program is distributed in the hope that it will be useful,
1238889Sjdp   but WITHOUT ANY WARRANTY; without even the implied warranty of
1338889Sjdp   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1438889Sjdp   GNU General Public License for more details.
1538889Sjdp
1638889Sjdp   You should have received a copy of the GNU General Public License
1738889Sjdp   along with this program; if not, write to the Free Software
18218822Sdim   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
19218822Sdim   02110-1301, USA.  */
2038889Sjdp
2138889Sjdp#include "ansidecl.h"
2238889Sjdp#include <stdio.h>
2338889Sjdp
24130561Sobrienextern void def_code (int);
25130561Sobrienextern void def_data (int);
26130561Sobrienextern void def_description (const char *);
27130561Sobrienextern void def_exports (const char *, const char *, int, int, int, int, int);
28130561Sobrienextern void def_heapsize (int, int);
2960484Sobrienextern void def_import
30130561Sobrien  (const char *, const char *, const char *, const char *, int);
31130561Sobrienextern void def_library (const char *, int);
32130561Sobrienextern void def_name (const char *, int);
33130561Sobrienextern void def_section (const char *, int);
34130561Sobrienextern void def_stacksize (int, int);
35130561Sobrienextern void def_version (int, int);
36130561Sobrienextern int  yyparse (void);
37130561Sobrienextern int  yyerror (const char *);
38130561Sobrienextern int  yylex (void);
39130561Sobrien
4038889Sjdpextern int yydebug;
4138889Sjdpextern FILE *yyin;
4238889Sjdpextern int linenumber;
43