1261886Sjmmv// Copyright 2014 Google Inc.
2261886Sjmmv// All rights reserved.
3261886Sjmmv//
4261886Sjmmv// Redistribution and use in source and binary forms, with or without
5261886Sjmmv// modification, are permitted provided that the following conditions are
6261886Sjmmv// met:
7261886Sjmmv//
8261886Sjmmv// * Redistributions of source code must retain the above copyright
9261886Sjmmv//   notice, this list of conditions and the following disclaimer.
10261886Sjmmv// * Redistributions in binary form must reproduce the above copyright
11261886Sjmmv//   notice, this list of conditions and the following disclaimer in the
12261886Sjmmv//   documentation and/or other materials provided with the distribution.
13261886Sjmmv// * Neither the name of Google Inc. nor the names of its contributors
14261886Sjmmv//   may be used to endorse or promote products derived from this software
15261886Sjmmv//   without specific prior written permission.
16261886Sjmmv//
17261886Sjmmv// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18261886Sjmmv// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19261886Sjmmv// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20261886Sjmmv// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21261886Sjmmv// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22261886Sjmmv// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23261886Sjmmv// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24261886Sjmmv// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25261886Sjmmv// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26261886Sjmmv// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27261886Sjmmv// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28261886Sjmmv
29261886Sjmmv#if defined(HAVE_CONFIG_H)
30273929Sjmmv#include "config.h"
31261886Sjmmv#endif
32261886Sjmmv
33261886Sjmmv#include <cstdlib>
34261886Sjmmv#include <iostream>
35261886Sjmmv
36261886Sjmmvint
37261886Sjmmvmain(void)
38261886Sjmmv{
39261886Sjmmv    std::cout << PACKAGE_VERSION << "\n";
40261886Sjmmv    return EXIT_SUCCESS;
41261886Sjmmv}
42