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

@ -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);