lib: remove __EMX__ guards

Follow-up to 179ee78e86 #2166
Closes #15884
This commit is contained in:
Viktor Szakats 2025-01-01 03:33:26 +01:00
parent 70b49a4e4c
commit 07a084f539
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
3 changed files with 3 additions and 3 deletions

View file

@ -53,7 +53,7 @@
#ifdef _WIN32
#define PATHSEP "\\"
#define IS_SEP(x) (((x) == '/') || ((x) == '\\'))
#elif defined(MSDOS) || defined(__EMX__) || defined(OS2)
#elif defined(MSDOS) || defined(OS2)
#define PATHSEP "\\"
#define IS_SEP(x) ((x) == '\\')
#else