blob: 99a844e42ac65837cb4ca961d8e0dafad14951fa [file] [log] [blame]
The Android Open Source Project10e23ee2009-03-03 19:30:30 -08001/**
2 * @file op_version.c
3 * output version string
4 *
5 * @remark Copyright 2003 OProfile authors
6 * @remark Read the file COPYING
7 *
8 * @author John Levon
9 * @author Philippe Elie
10 */
11
12#include <stdio.h>
13#include <stdlib.h>
14
15#include "op_version.h"
16#include "config.h"
17
18void show_version(char const * app_name)
19{
20 /* Do not change the version format: it is documented in html doc */
21 printf("%s: " PACKAGE " " VERSION " compiled on "
22 __DATE__ " " __TIME__ "\n", app_name);
23 exit(EXIT_SUCCESS);
24}