00001 /* V E R S . C 00002 * BRL-CAD 00003 * 00004 * Copyright (c) 2007-2012 United States Government as represented by 00005 * the U.S. Army Research Laboratory. 00006 * 00007 * This library is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public License 00009 * version 2.1 as published by the Free Software Foundation. 00010 * 00011 * This library is distributed in the hope that it will be useful, but 00012 * WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Lesser General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Lesser General Public 00017 * License along with this file; see the file named COPYING for more 00018 * information. 00019 */ 00020 /** @file libbn/vers.c 00021 * 00022 * version information about LIBBN 00023 * 00024 */ 00025 00026 #include "common.h" 00027 00028 #include "bn.h" 00029 #include "brlcad_version.h" 00030 00031 00032 /** 00033 * returns the compile-time version of libbn 00034 */ 00035 const char * 00036 bn_version(void) 00037 { 00038 return brlcad_ident("The BRL-CAD Numerical Computation Library"); 00039 } 00040 00041 /* 00042 * Local Variables: 00043 * tab-width: 8 00044 * mode: C 00045 * indent-tabs-mode: t 00046 * c-file-style: "stroustrup" 00047 * End: 00048 * ex: shiftwidth=4 tabstop=8 00049 */