Blame parser.h

Packit 400c17
/*
Packit 400c17
	Copyright(C) 2016, Red Hat, Inc., Jerome Marchand
Packit 400c17
Packit 400c17
	This program is free software: you can redistribute it and/or modify
Packit 400c17
	it under the terms of the GNU General Public License as published by
Packit 400c17
	the Free Software Foundation, either version 3 of the License, or
Packit 400c17
	(at your option) any later version.
Packit 400c17
Packit 400c17
	This program is distributed in the hope that it will be useful,
Packit 400c17
	but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 400c17
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 400c17
	GNU General Public License for more details.
Packit 400c17
Packit 400c17
	You should have received a copy of the GNU General Public License
Packit 400c17
	along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit 400c17
*/
Packit 400c17
Packit 400c17
#include <stdio.h>
Packit 400c17
#include <stdlib.h>
Packit 400c17
#include <string.h>
Packit 400c17
#include <stdbool.h>
Packit 400c17
Packit 400c17
#include "objects.h"
Packit 400c17
Packit 400c17
/* Prevents warning: ‘input’ defined but not used  */
Packit 400c17
#define YY_NO_INPUT
Packit 400c17
Packit 400c17
/* Why can't it get it from stdio.h? */
Packit 400c17
int fileno(FILE *stream);
Packit 400c17
Packit 400c17
int yylex();
Packit 400c17
int yyerror(obj_t **root, char *s);
Packit 400c17
FILE *yyin;