Blame compare.h

Packit Service 80a84b
/*
Packit Service 80a84b
	Copyright(C) 2017, Red Hat, Inc.
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
#ifndef KABI_DW_COMAPRE_H_
Packit Service 80a84b
#define KABI_DW_COMAPRE_H_
Packit Service 80a84b
Packit Service 80a84b
/* Return value when we detect a kABI change */
Packit Service 80a84b
#define EXIT_KABI_CHANGE 2
Packit Service 80a84b
Packit Service 80a84b
int compare(int argc, char **argv);
Packit Service 80a84b
Packit Service 80a84b
#endif