Blame lib/main.c

Packit d6cc65
/* Yacc library main function.
Packit d6cc65
Packit d6cc65
   Copyright (C) 2002, 2009-2015 Free Software Foundation, Inc.
Packit d6cc65
Packit d6cc65
   This file is part of Bison, the GNU Compiler Compiler.
Packit d6cc65
Packit d6cc65
   This program is free software: you can redistribute it and/or modify
Packit d6cc65
   it under the terms of the GNU General Public License as published by
Packit d6cc65
   the Free Software Foundation, either version 3 of the License, or
Packit d6cc65
   (at your option) any later version.
Packit d6cc65
Packit d6cc65
   This program is distributed in the hope that it will be useful,
Packit d6cc65
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit d6cc65
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit d6cc65
   GNU General Public License for more details.
Packit d6cc65
Packit d6cc65
   You should have received a copy of the GNU General Public License
Packit d6cc65
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit d6cc65
Packit d6cc65
#include <config.h>
Packit d6cc65
#include <locale.h>
Packit d6cc65
Packit d6cc65
int yyparse (void);
Packit d6cc65
Packit d6cc65
int
Packit d6cc65
main (void)
Packit d6cc65
{
Packit d6cc65
  setlocale (LC_ALL, "");
Packit d6cc65
  return yyparse ();
Packit d6cc65
}