Rename all functions imported from musl

This is to avoid conflicting with libraries, which occurred in the mingw builds
This commit is contained in:
ISSOtm
2019-11-23 23:07:39 +01:00
parent 68410d35d3
commit d93ad2e650
6 changed files with 19 additions and 19 deletions

View File

@@ -98,8 +98,8 @@ int main(int argc, char *argv[])
int version = 0; /* mask ROM version number */
int padvalue = 0; /* to pad the rom with if it changes size */
while ((ch = getopt_long_only(argc, argv, optstring, longopts,
NULL)) != -1) {
while ((ch = musl_getopt_long_only(argc, argv, optstring, longopts,
NULL)) != -1) {
switch (ch) {
case 'C':
coloronly = true;