@@ -331,18 +331,10 @@ # define OF_BSWAP_DOUBLE_IF_BE(i) (i) # define OF_BSWAP_FLOAT_IF_LE(i) OF_BSWAP_FLOAT(i) # define OF_BSWAP_DOUBLE_IF_LE(i) OF_BSWAP_DOUBLE(i) #endif -/* - * We define it here and not in objfw-defs.h, as it would be theoretically - * possible to build a universal binary for Mac OS X and iOS. - */ -#if defined(__APPLE__) && defined(__arm__) -# define OF_IOS -#endif - #define OF_ROL(value, bits) \ (((value) << ((bits) % (sizeof(value) * 8))) | \ ((value) >> (sizeof(value) * 8 - ((bits) % (sizeof(value) * 8))))) #define OF_ROR(value, bits) \ (((value) >> ((bits) % (sizeof(value) * 8))) | \