mirror of
https://github.com/holub/mame
synced 2025-06-02 10:59:52 +03:00
17 lines
501 B
C
17 lines
501 B
C
// license:BSD-3-Clause
|
|
// copyright-holders:Aaron Giles
|
|
/***************************************************************************
|
|
|
|
version.c
|
|
|
|
Version string source file for MAME.
|
|
|
|
***************************************************************************/
|
|
|
|
#define BARE_BUILD_VERSION "0.163"
|
|
|
|
extern const char bare_build_version[];
|
|
extern const char build_version[];
|
|
const char bare_build_version[] = BARE_BUILD_VERSION;
|
|
const char build_version[] = BARE_BUILD_VERSION " (" __DATE__")";
|