mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Fix develop error in getopt_long_only
The error was due to casting `const` away for permuting argv elements, which is necessary for a libc for compatibility with older systems, but not for us. Checkpatch will complain about the style not being followed, but this is not our code, so it can be ignored.
This commit is contained in:
2
include/extern/getopt.h
vendored
2
include/extern/getopt.h
vendored
@@ -36,7 +36,7 @@ struct option {
|
||||
int val;
|
||||
};
|
||||
|
||||
int getopt_long_only(int, char *const *, const char *, const struct option *, int *);
|
||||
int getopt_long_only(int, char **, const char *, const struct option *, int *);
|
||||
|
||||
#define no_argument 0
|
||||
#define required_argument 1
|
||||
|
||||
Reference in New Issue
Block a user