1*7e5c51e5SStefan Eßer /* 2*7e5c51e5SStefan Eßer * ***************************************************************************** 3*7e5c51e5SStefan Eßer * 4*7e5c51e5SStefan Eßer * SPDX-License-Identifier: BSD-2-Clause 5*7e5c51e5SStefan Eßer * 6*7e5c51e5SStefan Eßer * Copyright (c) 2018-2021 Gavin D. Howard and contributors. 7*7e5c51e5SStefan Eßer * 8*7e5c51e5SStefan Eßer * Redistribution and use in source and binary forms, with or without 9*7e5c51e5SStefan Eßer * modification, are permitted provided that the following conditions are met: 10*7e5c51e5SStefan Eßer * 11*7e5c51e5SStefan Eßer * * Redistributions of source code must retain the above copyright notice, this 12*7e5c51e5SStefan Eßer * list of conditions and the following disclaimer. 13*7e5c51e5SStefan Eßer * 14*7e5c51e5SStefan Eßer * * Redistributions in binary form must reproduce the above copyright notice, 15*7e5c51e5SStefan Eßer * this list of conditions and the following disclaimer in the documentation 16*7e5c51e5SStefan Eßer * and/or other materials provided with the distribution. 17*7e5c51e5SStefan Eßer * 18*7e5c51e5SStefan Eßer * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 19*7e5c51e5SStefan Eßer * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20*7e5c51e5SStefan Eßer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21*7e5c51e5SStefan Eßer * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 22*7e5c51e5SStefan Eßer * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23*7e5c51e5SStefan Eßer * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24*7e5c51e5SStefan Eßer * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25*7e5c51e5SStefan Eßer * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26*7e5c51e5SStefan Eßer * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27*7e5c51e5SStefan Eßer * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28*7e5c51e5SStefan Eßer * POSSIBILITY OF SUCH DAMAGE. 29*7e5c51e5SStefan Eßer * 30*7e5c51e5SStefan Eßer * ***************************************************************************** 31*7e5c51e5SStefan Eßer * 32*7e5c51e5SStefan Eßer * Definitions for processing command-line arguments. 33*7e5c51e5SStefan Eßer * 34*7e5c51e5SStefan Eßer */ 35*7e5c51e5SStefan Eßer 36*7e5c51e5SStefan Eßer #ifndef BC_VERSION_H 37*7e5c51e5SStefan Eßer #define BC_VERSION_H 38*7e5c51e5SStefan Eßer 39*7e5c51e5SStefan Eßer #define VERSION 4.0.0 40*7e5c51e5SStefan Eßer 41*7e5c51e5SStefan Eßer #endif // BC_VERSION_H 42