mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
23 lines
522 B
C++
23 lines
522 B
C++
/* version information
|
|
|
|
(c) 2007-2015 (W3C) MIT, ERCIM, Keio University
|
|
See tidy.h for the copyright notice.
|
|
|
|
*/
|
|
|
|
#ifdef RELEASE_DATE
|
|
static const char TY_(release_date)[] = RELEASE_DATE;
|
|
#else
|
|
static const char TY_(release_date)[] = "2015/01/22";
|
|
#endif
|
|
#ifdef LIBTIDY_VERSION
|
|
#ifdef RC_NUMBER
|
|
static const char TY_(library_version)[] = LIBTIDY_VERSION "." RC_NUMBER;
|
|
#else
|
|
static const char TY_(library_version)[] = LIBTIDY_VERSION;
|
|
#endif
|
|
#else
|
|
static const char TY_(library_version)[] = "5.0.0";
|
|
#endif
|
|
|
|
/* eof */
|