1 // -*- C++ -*-
2 
3 /*
4 
5   The Hoard Multiprocessor Memory Allocator
6   www.hoard.org
7 
8   Author: Emery Berger, http://www.cs.umass.edu/~emery
9 
10   Copyright (c) 1998-2019 Emery Berger
11 
12   This program is free software; you can redistribute it and/or modify
13   it under the terms of the GNU General Public License as published by
14   the Free Software Foundation; either version 2 of the License, or
15   (at your option) any later version.
16 
17   This program is distributed in the hope that it will be useful,
18   but WITHOUT ANY WARRANTY; without even the implied warranty of
19   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20   GNU General Public License for more details.
21 
22   You should have received a copy of the GNU General Public License
23   along with this program; if not, write to the Free Software
24   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25 
26 */
27 
28 // Hoard version X.Y.0 = X0Y00
29 
30 #define HOARD_MAJOR 3
31 #define HOARD_MINOR 13
32 #define HOARD_PATCH 0
33 
34 #define HOARD_VERSION_STRING "3.13.0"
35 #define HOARD_VERSION_NUMBER (HOARD_MAJOR * 10000 + HOARD_MINOR * 100 + HOARD_PATCH)
36