update version numbers

This commit is contained in:
Sean Barrett
2020-07-13 04:36:03 -07:00
parent 59f06c1a97
commit 314d0a6f9a
10 changed files with 176 additions and 179 deletions

View File

@ -115,6 +115,3 @@ for other people to use them from other languages.
I still use MSVC 6 (1998) as my IDE because it has better human factors
for me than later versions of MSVC.

View File

@ -9,7 +9,7 @@ int main(int argc, char **argv)
char *footer = stb_file("README.footer.md", &flen); // stb_file - read file into malloc()ed buffer
char **list = stb_stringfile("README.list", &listlen); // stb_stringfile - read file lines into malloced array of strings
FILE *f = fopen("../README.md", "wb");
FILE *f = fopen("../README.md", "w");
fprintf(f, "<!--- THIS FILE IS AUTOMATICALLY GENERATED, DO NOT CHANGE IT BY HAND --->\n\n");
fwrite(header, 1, hlen, f);