1*0a6a1f1dSLionel Sambuc // Copyright 2014 Google Inc.
2*0a6a1f1dSLionel Sambuc // All rights reserved.
3*0a6a1f1dSLionel Sambuc //
4*0a6a1f1dSLionel Sambuc // Redistribution and use in source and binary forms, with or without
5*0a6a1f1dSLionel Sambuc // modification, are permitted provided that the following conditions are
6*0a6a1f1dSLionel Sambuc // met:
7*0a6a1f1dSLionel Sambuc //
8*0a6a1f1dSLionel Sambuc // * Redistributions of source code must retain the above copyright
9*0a6a1f1dSLionel Sambuc // notice, this list of conditions and the following disclaimer.
10*0a6a1f1dSLionel Sambuc // * Redistributions in binary form must reproduce the above copyright
11*0a6a1f1dSLionel Sambuc // notice, this list of conditions and the following disclaimer in the
12*0a6a1f1dSLionel Sambuc // documentation and/or other materials provided with the distribution.
13*0a6a1f1dSLionel Sambuc // * Neither the name of Google Inc. nor the names of its contributors
14*0a6a1f1dSLionel Sambuc // may be used to endorse or promote products derived from this software
15*0a6a1f1dSLionel Sambuc // without specific prior written permission.
16*0a6a1f1dSLionel Sambuc //
17*0a6a1f1dSLionel Sambuc // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18*0a6a1f1dSLionel Sambuc // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19*0a6a1f1dSLionel Sambuc // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20*0a6a1f1dSLionel Sambuc // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21*0a6a1f1dSLionel Sambuc // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22*0a6a1f1dSLionel Sambuc // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23*0a6a1f1dSLionel Sambuc // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24*0a6a1f1dSLionel Sambuc // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25*0a6a1f1dSLionel Sambuc // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26*0a6a1f1dSLionel Sambuc // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27*0a6a1f1dSLionel Sambuc // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*0a6a1f1dSLionel Sambuc
29*0a6a1f1dSLionel Sambuc #if defined(HAVE_CONFIG_H)
30*0a6a1f1dSLionel Sambuc #include "bconfig.h"
31*0a6a1f1dSLionel Sambuc #endif
32*0a6a1f1dSLionel Sambuc
33*0a6a1f1dSLionel Sambuc #include <cstdlib>
34*0a6a1f1dSLionel Sambuc #include <iostream>
35*0a6a1f1dSLionel Sambuc
36*0a6a1f1dSLionel Sambuc int
main(void)37*0a6a1f1dSLionel Sambuc main(void)
38*0a6a1f1dSLionel Sambuc {
39*0a6a1f1dSLionel Sambuc std::cout << PACKAGE_VERSION << "\n";
40*0a6a1f1dSLionel Sambuc return EXIT_SUCCESS;
41*0a6a1f1dSLionel Sambuc }
42