mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
$$DATE is fixed.
This commit is contained in:
@@ -22,6 +22,6 @@ const char *date_get(void)
|
||||
time(&rawtime);
|
||||
timeinfo = localtime(&rawtime);
|
||||
scratch_buffer_clear();
|
||||
scratch_buffer_printf("%02d-%02d-%02d", timeinfo->tm_year + 1900, timeinfo->tm_mon, timeinfo->tm_mday);
|
||||
scratch_buffer_printf("%02d-%02d-%02d", timeinfo->tm_year + 1900, timeinfo->tm_mon + 1, timeinfo->tm_mday);
|
||||
return scratch_buffer_copy();
|
||||
}
|
||||
@@ -1 +1 @@
|
||||
#define COMPILER_VERSION "0.4.72"
|
||||
#define COMPILER_VERSION "0.4.73"
|
||||
Reference in New Issue
Block a user