1ec86491dSespie #ifndef ENGINECHOICE_H 2ec86491dSespie #define ENGINECHOICE_H 3ec86491dSespie 4*1314328aSespie /* $OpenBSD: enginechoice.h,v 1.2 2021/03/04 09:32:49 espie Exp $ */ 5*1314328aSespie /* 6*1314328aSespie * Copyright (c) 2020 Marc Espie. 7*1314328aSespie * 8*1314328aSespie * Redistribution and use in source and binary forms, with or without 9*1314328aSespie * modification, are permitted provided that the following conditions 10*1314328aSespie * are met: 11*1314328aSespie * 1. Redistributions of source code must retain the above copyright 12*1314328aSespie * notice, this list of conditions and the following disclaimer. 13*1314328aSespie * 2. Redistributions in binary form must reproduce the above copyright 14*1314328aSespie * notice, this list of conditions and the following disclaimer in the 15*1314328aSespie * documentation and/or other materials provided with the distribution. 16*1314328aSespie * 17*1314328aSespie * THIS SOFTWARE IS PROVIDED BY THE OPENBSD PROJECT AND CONTRIBUTORS 18*1314328aSespie * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19*1314328aSespie * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20*1314328aSespie * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OPENBSD 21*1314328aSespie * PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22*1314328aSespie * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23*1314328aSespie * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24*1314328aSespie * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25*1314328aSespie * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26*1314328aSespie * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27*1314328aSespie * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28*1314328aSespie */ 29ec86491dSespie extern void engine_run_list(Lst, bool *, bool *); 30ec86491dSespie extern void engine_node_updated(GNode *); 31ec86491dSespie extern void choose_engine(bool); 32ec86491dSespie 33ec86491dSespie #endif 34