From 7c19aac60e12d6f5ea301bdb34d7826a01e0b06f Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sun, 8 Nov 2015 12:56:12 +0100 Subject: Rename *.c -> *.cpp in our source (nw) --- src/version.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/version.cpp (limited to 'src/version.cpp') diff --git a/src/version.cpp b/src/version.cpp new file mode 100644 index 00000000000..3ed45cbfb40 --- /dev/null +++ b/src/version.cpp @@ -0,0 +1,16 @@ +// license:BSD-3-Clause +// copyright-holders:Aaron Giles +/*************************************************************************** + + version.c + + Version string source file for MAME. + +***************************************************************************/ + +#define BARE_BUILD_VERSION "0.167" + +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__")"; -- cgit v1.2.3