X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/8e19377db1fccbb662fb6d579e5d6ad75c2c229e..42bc3be31c562fac31cbe5e451e4b48092f06e68:/common/version.c diff --git a/common/version.c b/common/version.c new file mode 100644 index 00000000..cd78272c --- /dev/null +++ b/common/version.c @@ -0,0 +1,10 @@ +#define VERSION "$Id $" +static const struct __attribute__((packed)) { + const char string[48]; + unsigned int length; + unsigned int magic; +} version __attribute__((unused,section("versioninformation"))) = { + VERSION, + sizeof(VERSION), + 0x48151623, +};