Rev 16 | Rev 33 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: version.c 18 2024-09-14 00:42:40Z nishi $ */
#define SOURCE
#include "tw_version.h"
const char* tw_version = "0.00";
const char* tw_platform =
#if defined(PLATFORM)
PLATFORM
#elif defined(__NetBSD__)
"NetBSD"
#elif defined(__MINGW32__)
"Windows"
#else
"Unix"
#endif
;
const char* tw_get_version(void) { return tw_version; }
const char* tw_get_platform(void) { return tw_platform; }