diff options
author | Chris Robinson <[email protected]> | 2017-08-30 16:33:44 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-08-30 16:33:44 -0700 |
commit | 67f183f2065d8d8de3c345f88bc5dd76232ba1a0 (patch) | |
tree | 5baa74881679675bb2f5ef211c7df35d75d7219f /native-tools/bsincgen.c | |
parent | 0408f9b7dfcca59488484b4d7326ffdb32fbfb84 (diff) |
Avoid using wmain on Windows
Diffstat (limited to 'native-tools/bsincgen.c')
-rw-r--r-- | native-tools/bsincgen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native-tools/bsincgen.c b/native-tools/bsincgen.c index 754e0709..e502cdd0 100644 --- a/native-tools/bsincgen.c +++ b/native-tools/bsincgen.c @@ -362,6 +362,8 @@ int main(int argc, char *argv[]) {
FILE *output;
+ GET_UNICODE_ARGS(&argc, &argv);
+
if(argc > 2)
{
fprintf(stderr, "Usage: %s [output file]\n", argv[0]);
|