mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 06:44:07 +10:00
Toy now fits into the C spec. Fixed #158 Addendum: MacOS test caught an error: error: a function declaration without a prototype is deprecated in all versions of C That took 3 attempts to fix correctly. Addendum: 'No new line at the end of file' are you shitting me?
9 lines
275 B
C
9 lines
275 B
C
#include "toy_common.h"
|
|
|
|
//defined separately, as compilation can take several seconds, invalidating the comparisons of the given macros
|
|
static const char* build = __DATE__ " " __TIME__ ", incomplete Toy v2.x";
|
|
|
|
const char* Toy_private_version_build(void) {
|
|
return build;
|
|
}
|