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