Skip to content

Commit

Permalink
[platforms][compiler] Reset to ISO as standard
Browse files Browse the repository at this point in the history
  • Loading branch information
thoni56 committed Apr 23, 2021
1 parent 55ae370 commit 7b7696b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions compiler/sysdep.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,21 @@
/**************************/

/* Common case first */
#define ISO 0
#define NATIVECHARSET CHARSET_UTF
#define ISO 1
#define NATIVECHARSET 0 /* ISO */

#ifdef __dos__
#undef ISO
#define ISO 0
#undef NATIVECHARSET
#define NATIVECHARSET CHARSET_DOS
#define NATIVECHARSET 1 /* DOS */
#endif

#ifdef __win__
#undef ISO
#define ISO 1
#undef NATIVECHARSET
#define NATIVECHARSET
#define NATIVECHARSET 0 /* ISO */
#endif


Expand Down

0 comments on commit 7b7696b

Please sign in to comment.