@@ -44,10 +44,16 @@ # define OF_PPC_ASM # elif defined(__arm__) || defined(__ARM__) # define OF_ARM_ASM # endif #endif + +#ifndef _WIN32 +# define OF_PATH_DELIM '/' +#else +# define OF_PATH_DELIM '\\' +#endif static OF_INLINE uint16_t OF_BSWAP16_CONST(uint16_t i) { return (i & UINT16_C(0xFF00)) >> 8 |