Blame parser.h

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